Mass.GreaterThan(Mass, Double) Operator

Compares two values to determine which is greater.

Definition

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

Parameters

left  Mass
The value to compare with right.
right  Double
The value to compare with left.

Return Value

Boolean
true if left is greater than right; otherwise, false.

Implements

IComparisonOperators<TSelf, TOther, TResult>.GreaterThan(TSelf, TOther)

See Also