OutputVar := instance.ToString()
OutputVar := instance.ToString(base)
Gets a string representation of the MfBigInt instance.
Returns string var representing current instance Value as base 10.
Throws MfNullReferenceException if called as a static method
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString() ; 1234567890
Gets a string representation of the MfBigInt instance encode by the value of base.
base
The base value to encode return string as. Base values from 2 to 95 are accepted.
Can be any type that matches IsInteger or var integer.
Returns string var representing current instance Value encoded as base.
Throws MfNullReferenceException if called as a static method.
If base equals 2 (binary) then a binary bit will be append to the start of the output. 0 if current instance IsNegative is false; Otherwise 1.
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString(10) ; 1234567890
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString(2) ; 01001001100101100000001011010010
; first bit on the left is 0 indicating positive value
bigI := new MfBigInt("-1234567890")
MsgBox % bigI.ToString(2) ; 11001001100101100000001011010010
; first bit on the left is 1 indicating negative value
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString(5) ; 10012022133030
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString(16) ; 499602D2
bigI := new MfBigInt("-1234567890")
MsgBox % bigI.ToString(16) ; -499602D2
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString(25) ; 51AC8FF
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString(64) ; 19bWBI
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString(88) ; Kpsio
bigI := new MfBigInt("1234567890")
MsgBox % bigI.ToString(95) ; FE Lj