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