DurationDivision Operator (Duration, Duration) |
Divides the
Duration by another duration.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double operator /(
Duration dividend,
Duration divisor
)
Public Shared Operator / (
dividend As Duration,
divisor As Duration
) As Double
public:
static double operator /(
Duration dividend,
Duration divisor
)
static let inline (/)
dividend : Duration *
divisor : Duration : float
Parameters
- dividend
- Type: AGI.Foundation.TimeDuration
The Duration to divide. - divisor
- Type: AGI.Foundation.TimeDuration
The Duration by which to divide the Duration.
Return Value
Type:
DoubleThe result of dividing the dividend by the divisor.
See Also