我知道如何计算两个时间跨度之间的差异。但是,我只能得到一个答案。女士、秒、分钟等
我想要的是比较两个时间跨度,然后得到秒+毫秒的差异。
这意味着如果差异是 10 秒和 309 毫秒,我会得到。
10.309 作为答案。
我不认为在这里显示我的任何代码真的很重要,因为我已经完成了所有工作,而且只是为了得到我想知道的结果。
如果您需要我的代码中的任何内容,请告诉。
TimeSpan first;
TimeSpan last;
TimeSpan.TryParseExact(First.Text.Replace("-", ":").Remove(First.Text.LastIndexOf("-"),1).Insert(First.Text.Length-4,"."),"g",CultureInfo.InvariantCulture,out first);
TimeSpan.TryParseExact(Last.Text.Replace("-", ":").Remove(First.Text.LastIndexOf("-"), 1).Insert(First.Text.Length - 4, "."), "g", CultureInfo.InvariantCulture, out last);
TimeSpan u = first - last;
MessageBox.Show(u.TotalMilliseconds.ToString());