BinarySizeGreaterThanOrEqual(BinarySize, BinarySize) Operator
Returns a value indicating whether a specified
BinarySize is greater than or
equal to another
BinarySize.
Namespace: OokiiAssembly: Ookii.BinarySize (in Ookii.BinarySize.dll) Version: 1.2.0+20f0bdf981c7baf115c68ccab612b1a031efcb4d
public static bool operator >=(
BinarySize left,
BinarySize right
)
Public Shared Operator >= (
left As BinarySize,
right As BinarySize
) As Boolean
public:
static bool operator >=(
BinarySize left,
BinarySize right
)
static let inline (>=)
left : BinarySize *
right : BinarySize : bool
- left BinarySize
- The first BinarySize to compare.
- right BinarySize
- The second BinarySize to compare.
Boolean if
left is greater than or equal to
right; otherwise,
.
IComparisonOperatorsTSelf, TOther, TResultGreaterThanOrEqual(TSelf, TOther)