public native static operator%=( readonly a as SByte, readonly b as SByte ) as Void
Replaces a with the remainder of a divided by b.
a
b
value = SByte(10) value %= SByte(3) assert value == SByte(1)