I try to parse string via c#:
var tm = TimeSpan.ParseExact(00:00.00000, "hh:mm.sssss", CultureInfo.InvariantCulture);
and then get TotalMilliseconds, but i get FormatException.
How to do that?
I try to parse string via c#:
var tm = TimeSpan.ParseExact(00:00.00000, "hh:mm.sssss", CultureInfo.InvariantCulture);
and then get TotalMilliseconds, but i get FormatException.
How to do that?