UInt128.LessThanOrEqual(UInt128, UInt128) Operator  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Compares two values to determine which is less or equal.
public:
 static bool operator <=(UInt128 left, UInt128 right) = System::Numerics::IComparisonOperators<UInt128, UInt128, bool>::op_LessThanOrEqual;
	public static bool operator <=(UInt128 left, UInt128 right);
	static member ( <= ) : UInt128 * UInt128 -> bool
	Public Shared Operator <= (left As UInt128, right As UInt128) As Boolean
	Parameters
- left
 - UInt128
 
The value to compare with right.
- right
 - UInt128
 
The value to compare with left.
Returns
true if left is less than or equal to right; otherwise, false.