public native static operator//=( readonly a as SByte, readonly b as SByte ) as Void
Replaces a with the integer division of a by b.
| Parameter | Description |
|---|---|
a | Mutable target value. |
b | Divisor. |
value = SByte(10) value //= SByte(3) assert value == SByte(3)