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