S
Simon Morris
In VB6 I use this code:
Public Island() as MapPoint
Type MapPoint
GridEast as Single
GridNorth as Single
End Type
How do I do this in VB.NET?
Public Island() as MapPoint
Type MapPoint
GridEast as Single
GridNorth as Single
End Type
How do I do this in VB.NET?