BinarySize.Modulus(BinarySize, BinarySize) Operator

Returns the remainder after dividing two BinarySize values.

Definition

Namespace: Ookii
Assembly: Ookii.BinarySize (in Ookii.BinarySize.dll) Version: 1.2.0+20f0bdf981c7baf115c68ccab612b1a031efcb4d
C#
public static BinarySize operator %(
	BinarySize left,
	BinarySize right
)

Parameters

left  BinarySize
The left operand.
right  BinarySize
The right operand.

Return Value

BinarySize
The remainder after dividing left by right.

Implements

IModulusOperators<TSelf, TOther, TResult>.Modulus(TSelf, TOther)

Exceptions

DivideByZeroExceptionright is zero.

See Also