如何在.NET中转换时间单位?

时间:2012-11-15 07:10:12

标签: .net datetime time integer

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

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

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

1 个答案:

答案 0 :(得分:5)

int minutes = 5;
int milliseconds = TimeSpan.FromMinutes(minutes).TotalMilliseconds;