OutputVar := instance.Multiply(value)
Multiplies the current instance of MfUInt32 by the value.
value
The value to multiply the current instance Value by.
Can be any type that matches IsNumber. or var number.
If ReturnAsObject is true then returns current instance of MfUInt32 with an updated Value; Otherwise returns Value as var.
Throws MfNotSupportedException if Readonly is true.
Throws MfNullReferenceException if called as a static method
Throws MfArgumentNullException if value is null.
Throws MfDivideByZeroException if value is zero.
Throws MfArithmeticException if the operation fails or value is not an instance of MfUInt32 and can not be converted into integer value.
Throws MfArgumentOutOfRangeException if dividing result is less then MinValue and greater than MaxValue
If the result of the operation is not a whole number such as 4*3 but rather a float number such as 4*3.3 (4 * 3.2 = 13.2) then the result will always be the whole number portion of the operation. For example:
mfInt := new MfUInt32(4)
MsgBox % mfInt.Multiply(3.2) ; displays 12
If you need to work with decimal/float numbers see MfFloat
i := new MfUInt32(80, true) ; create new MfUInt32 and set it RetrunAsObject to value to true
iNew := new MfUInt32(8)
MsgBox % i.Multiply(iNew).Value ; displays 640
MsgBox % i.Add(-5).Value ; displays 635
MsgBox % i.Add(10).Multiply(2).Value ; displays 1290