Initializes a new instance of the MfBigInt class.
OutputVar := new MfInt64([int, returnAsObj, readonly])
Initializes a new instance of the MfBigInt class optionally setting the Value property, ReturnAsObject property and the ReadOnly property.
int
The MfBigInt object or var containing integer to create a new instance with.
returnAsObj
Determines if the current instance of MfBigInt class will return MfBigInt instances from functions or vars containing integer. If omitted value is false
readonly
Determines if the current instance of MfBigInt class will allow its Value to be altered after it is constructed.
The ReadOnly property will reflect this value after the class is constructed.
If omitted value is false
Sealed Class.
This constructor initializes the MfBigInt with the integer value of int.
Value property to the value of int.
ReturnAsObject will have a value of returnAsObj
ReadOnly will have a value of readonly.
If ReadOnly is true then any attempt to change the underlying value will result in MfNotSupportedException being thrown.
Throws MfNotSupportedException if class is extended.
Throws MfArgumentException if error in parameter.
Throws MfNotSupportedException if incorrect type of parameters or incorrect number of parameters.