Length.Division(Length, Double) Operator

Divides one value by another to compute their quotient.

Definition

Namespace: InnerDrive.Quantitative
Assembly: InnerDrive.Quantitative (in InnerDrive.Quantitative.dll) Version: 5.2.9017.0
C#
public static Length operator /(
	Length left,
	double right
)

Parameters

left  Length
The value which right divides.
right  Double
The value which divides left.

Return Value

Length
The quotient of left divided by right.

Implements

IDivisionOperators<TSelf, TOther, TResult>.Division(TSelf, TOther)

See Also