LatLon Constructor (UInt64) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Initialize from 64bit integer. See
AsInt64.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public LatLon(
ulong as64
)
Public Sub New (
as64 As ULong
)
Parameters
- as64
- Type: SystemUInt64
Latitude and Longitude packed as a 64bit integer.
Examples ulong convInt65 = 10944270394068537552;
LatLon newLatLon = new LatLon(convInt65);
Console.WriteLine("LatLon from 64-bit integer is {0}", newLatLon);
See Also