I am having a tough time googling /=
... can anyone tell me what this code does?
number = digits[n % digits.Length] + number;
n /= digits.Length;
My intent is to determine what the remainder of this operation is... so I know when to stop or keep going.