GEOREFTryParse Method
Attempts to parse a string into an GEOREF coordinate.
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public static bool TryParse(
string value,
out GEOREF geo
)
- value String
- string
- geo GEOREF
- GEOREF
BooleanWebMercator
The following example attempts to parse a GEOREF coordinate.
GEOREF geo;
if(!GEOREF.TryParse("SAFB60125012", out wmc))
{
Console.WriteLine(geo);//8284118.2mE 6339892.6mN
}