[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 *(
	TimeSpanFormattable Time,
	int multiplier
)
Visual Basic
Public Shared Operator * ( _
	Time As TimeSpanFormattable, _
	multiplier As Integer _
) As TimeSpanFormattable
Visual C++
public:
static TimeSpanFormattable operator *(
	TimeSpanFormattable Time, 
	int multiplier
)
F#
static let inline (*)
        Time:TimeSpanFormattable * 
        multiplier:int  : TimeSpanFormattable
JScript
JScript does not support overloaded operators.

Parameters

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

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