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