You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello I would like to register a problem I found in RmcData.Parse.
Currently the time in utc places decimal point causing exception. For that I made a small change, below:
Function: public static RmcData Parse(string inputString) Code Include:
//--- if utc have decimal numbers.
if (values[1].Contains("."))
values[1] = values[1].Substring(0, values[1].IndexOf("."));
Thanks
The text was updated successfully, but these errors were encountered:
Hello I would like to register a problem I found in RmcData.Parse.
Currently the time in utc places decimal point causing exception. For that I made a small change, below:
Function: public static RmcData Parse(string inputString)
Code Include:
Thanks
The text was updated successfully, but these errors were encountered: