public native static operator%( readonly a as SByte, readonly b as SByte ) as SByte
Computes the remainder of one SByte value divided by another.
a
b
a%b.
a%b
SByte(0)
assert SByte(10) % SByte(3) == SByte(1)