[This is preliminary documentation and is subject to change.]

Multiplies given TimeSpanFormattable with given multiplier

Namespace: Tools
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public static TimeSpanFormattable operator *(
	double multiplier,
	TimeSpanFormattable Time
)
Visual Basic
Public Shared Operator * ( _
	multiplier As Double, _
	Time As TimeSpanFormattable _
) As TimeSpanFormattable
Visual C++
public:
static TimeSpanFormattable operator *(
	double multiplier, 
	TimeSpanFormattable Time
)
F#
static let inline (*)
        multiplier:float * 
        Time:TimeSpanFormattable  : TimeSpanFormattable
JScript
JScript does not support overloaded operators.

Parameters

multiplier
Type: System..::..Double
Multiplier
Time
Type: Tools..::..TimeSpanFormattable
A TimeSpanFormattable

Return Value

Time multiplied multiplier times. Accurancy of theis operation is milliseconds

Exceptions

ExceptionCondition
System..::..OverflowExceptionResulting value is up to be less than MinValue or greater than MaxValue

See Also