What .NET functions allow conversion between time units?
eg: If I have an Integer which I know represents a time duration in minutes, what is the best way in .NET to convert that number to milliseconds?
Dim durationInMinutes as Integer = 10
Dim durationInMilliseconds As Integer = <???>(10); // what is the function to use here?
1 Answer