-3

哪些.NET函数允许时间单位之间的转换?

例如:如果我有一个Integer我知道以分钟为单位的持续时间,那么.NET将该数字转换为毫秒的最佳方法是什么?

Dim durationInMinutes as Integer = 10
Dim durationInMilliseconds As Integer = <???>(10);  // what is the function to use here?
4

1 回答 1

5
int minutes = 5;
int milliseconds = TimeSpan.FromMinutes(minutes).TotalMilliseconds;
于 2012-11-15T07:13:51.973 回答