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
assert SByte(10) % SByte(3) == SByte(1)