public static void Main()
string entry = "N 45-30.45 E 45-59.20";
Allowed_Parse_Format formats = Allowed_Parse_Format.Lat_Long;
Parse_Format_Type allowedLatLongTypes = Parse_Format_Type.Degree_Decimal_Minute | Parse_Format_Type.Degree_Minute_Second;
if (!Coordinate.TryParse(entry, new EagerLoad(false), formats, out c) || c.Parse_Format.HasFlag(allowedLatLongTypes))
Console.WriteLine("Invalid Entry");
c.FormatOptions.Format = CoordinateFormatType.Degree_Decimal_Minutes;