UBinarySizeLessThanOrEqual(UBinarySize, UInt64) Operator
Returns a value indicating whether a specified
UBinarySize is less than or
equal to a
UInt64.
Namespace: OokiiAssembly: Ookii.BinarySize (in Ookii.BinarySize.dll) Version: 1.2.0+20f0bdf981c7baf115c68ccab612b1a031efcb4d
public static bool operator <=(
UBinarySize left,
ulong right
)
Public Shared Operator <= (
left As UBinarySize,
right As ULong
) As Boolean
public:
static bool operator <=(
UBinarySize left,
unsigned long long right
)
static let inline (<=)
left : UBinarySize *
right : uint64 : bool
- left UBinarySize
- The UBinarySize to compare.
- right UInt64
- The UInt64 to compare.
Boolean if the value of
left is less than or equal to the
value of
right; otherwise,
.