Click or drag to resize

LatLonAsInt64 Property

Verizon Connect Logo
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; }

Property Value

Type: UInt64
Examples
C#
LatLon newLatLon = new LatLon("33.584444, -117.731874");
ulong convInt65 = newLatLon.AsInt64;
Console.WriteLine("LatLon as 64-bit integer is {0}", convInt65);
// 'LatLon as 64-bit integer is 10944270394068537552'
See Also