Click or drag to resize

LatLonToString Method

Verizon Connect Logo
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()

Return Value

Type: String
The latitude and longitude of this LatLon.
Examples
C#
LatLon a = new LatLon(33.587507, -117.741057);
String latlonAsString = a.ToString();
Console.WriteLine("The LatLon is {0}", latlonAsString);
// 'The LatLon is 33.587507,-117.741057'
See Also