Exemplo n.º 1
0
 private void PadWithZeros()
 {
     while (_input.Length() < _maxDigits)
         _input.Insert(0, '0');
 }