LatLonAsInt64 Property | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Return Latitude and Longitude packed as a 64bit integer.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public ulong AsInt64 { get; }
Public ReadOnly Property AsInt64 As ULong
Get
Property Value
Type:
UInt64Examples LatLon newLatLon = new LatLon("33.584444, -117.731874");
ulong convInt65 = newLatLon.AsInt64;
Console.WriteLine("LatLon as 64-bit integer is {0}", convInt65);
See Also