Esempio n. 1
0
 private string ConvertBack(long result)
 {
     return(BaseChange.DecimalToArbitrarySystem(result, this._radix));
 }
Esempio n. 2
0
 private void SetOperands(string operand1, string operand2)
 {
     this._operand1 = BaseChange.ArbitraryToDecimalSystem(operand1, this._radix);
     this._operand2 = BaseChange.ArbitraryToDecimalSystem(operand2, this._radix);
 }