我创建了一个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.
我哪里错了?