Click or drag to resize

LatLon Constructor (UInt64)

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

Parameters

as64
Type: SystemUInt64
Latitude and Longitude packed as a 64bit integer.
Examples
C#
ulong convInt65 = 10944270394068537552;
LatLon newLatLon = new LatLon(convInt65);
Console.WriteLine("LatLon from 64-bit integer is {0}", newLatLon);
// 'LatLon from 64-bit integer is 33.584444,-117.731874'
See Also