DurationMultiply Operator  | 
  
    Namespace: 
   AGI.Foundation.Time
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static Duration operator *(
	Duration left,
	double right
)
Public Shared Operator * ( 
	left As Duration,
	right As Double
) As Duration
public:
static Duration operator *(
	Duration left, 
	double right
)
static let inline (*)
        left : Duration * 
        right : float  : DurationParameters
- left
 - Type: AGI.Foundation.TimeDuration
The Duration to multiply. - right
 - Type: SystemDouble
The constant by which to multiply the Duration. 
Return Value
Type: 
DurationA 
Duration that represents the value of this instance multiplied by the constant.
See Also