0

我知道如何计算两个时间跨度之间的差异。但是,我只能得到一个答案。女士、秒、分钟等

我想要的是比较两个时间跨度,然后得到秒+毫秒的差异。

这意味着如果差异是 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());
4

1 回答 1

1

使用“F”格式说明符

MessageBox.Show(u.TotalSeconds.ToString("F3"));
于 2013-08-03T06:18:45.557 回答