TimeSpan
私はこのように作成しました
TimeSpan ts = new Timespan();
// Do some addition and subtraction on it
次に、これを使用してファイルに保存しています
string.Format("{0}:{1}:{2}:{3}", ts.Hours, ts.Minutes, ts.Seconds, ts.MilliSeconds);
そこから返されるさまざまな値は次のようになります
0:0:4:410
0:0:1:425
0:0:1:802
0:0:1:509
0:0:1:674
0:0:1:628
0:0:2:76
TimeSpanに戻す方法。
使ってます
TimeSpan.ParseExact("0:0:4:410", "h:m:s:fff", null);
しかし、それは私にエラーを与えていますInput String is not in correct format.
私はどこが間違っていますか?