哪些.NET
函数允许在时间单位之间进行转换?
例如:如果我知道Integer
表示持续时间(以分钟为单位),那么.NET
将该数字转换为毫秒的最佳方法是什么?
Dim durationInMinutes as Integer = 10
Dim durationInMilliseconds As Integer = <???>(10); // what is the function to use here?
答案 0 :(得分:5)
int minutes = 5;
int milliseconds = TimeSpan.FromMinutes(minutes).TotalMilliseconds;