klyn.Byte.operator%
method
public native static operator%( readonly a as Byte, readonly b as Byte ) as Byte
Description

Computes the remainder of one Byte value divided by another.

Parameters
  • a Dividend.
  • b Divisor.
Returns

a%b.

Throws
  • ZeroDivisionError if the divisor equals `Byte(0)` at runtime.
Example
assert Byte(10) % Byte(3) == Byte(1)