Creates a TimeSpan that represents the number of minutes specified.
[Visual Basic] Public Shared Function FromMinutes( _ ByVal value As Double _ ) As TimeSpan [C#] public static TimeSpan FromMinutes( double value ); [C++] public: static TimeSpan FromMinutes( double value ); [JScript] public static function FromMinutes( value : double ) : TimeSpan;
A TimeSpan that represents the number of minutes specified by value to the nearest millisecond.
The ticks value is computed by converting the value parameter from units of minutes to units of milliseconds, rounding to the nearest integer, and then converting from milliseconds to ticks.
TimeSpan Structure | TimeSpan Members | System Namespace | Double | Ticks | Milliseconds