LatLonToString Method | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Returns the coordinates of this
LatLon in the form
"
Lat,
Lon".
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public override string ToString()
Public Overrides Function ToString As String
Return Value
Type:
StringThe latitude and longitude of this LatLon.
Examples LatLon a = new LatLon(33.587507, -117.741057);
String latlonAsString = a.ToString();
Console.WriteLine("The LatLon is {0}", latlonAsString);
See Also