本文介绍了C#的时间跨度毫秒VS TotalMilliseconds的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在下面的例子中,为什么毫秒财产返回0,但TotalMilliseconds财产归还5000

  //5秒
时间跨度intervalTimespan =新时间跨度(0,0,5);

//返回0
intervalTimespan.Milliseconds;

//返回5000.0
intervalTimespan.TotalMilliseconds
 

解决方案

简单:

  • 毫秒是剩余​​的毫秒,不形成一个整体的第二。
  • TotalMilliseconds是pssed为毫秒的时间跨度EX $ P $的整个持续时间。

In the example below, why does the Milliseconds property return 0 but the TotalMilliseconds property return 5000

// 5 seconds
TimeSpan intervalTimespan = new TimeSpan(0, 0, 5);

// returns 0
intervalTimespan.Milliseconds;

// returns 5000.0
intervalTimespan.TotalMilliseconds
解决方案

Simple:

  • Milliseconds are the remaining milliseconds, that don't form a whole second.
  • TotalMilliseconds is the complete duration of the timespan expressed as milliseconds.

这篇关于C#的时间跨度毫秒VS TotalMilliseconds的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-19 02:39