In VB.NET, why can't I see a member of a structure when I make it a nullable type?
Example:
Public Structure myNullable  
    Dim myNullVar As Integer  
End Structure
Sub Main()  
    Dim myInstance As myNullable 'This works.  
    Dim myNullableInstance? As myNullable 'This works.   
    myInstance.myNullVar = 1  'This works.     
    myNullableInstance.myNullVar = 1   'This doesn't work.  
End Sub