MilitaryGridReferenceSystemTryParse(String, MilitaryGridReferenceSystem) Method
Attempts to parse a string into an MGRS 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 MilitaryGridReferenceSystem mgrs
)
- value String
- string
- mgrs MilitaryGridReferenceSystem
- MilitaryGridReferenceSystem
BooleanMilitaryGridReferenceSystem
The following example attempts to parse an MGRS coordinate set with the default WGS84 ellipsoid.
MilitaryGridReferenceSystem mgrs;
if(!MilitaryGridReferenceSystem.TryParse("16U EA 00872 05009", out mgrs))
{
Console.WriteLine(mgrs);//16U EA 00872 05009
}