Multiply()

Namespace ›› System ›› MfByte ›› Methods ››
Parent Previous Next

Multiply()

OutputVar := instance.Multiply(value)

Multiply(value)

Multiplies the current instance of MfByte by the value.

Parameters

value

The value to multiply the current instance Value by.
Can be any type that matches IsNumber. or var number.

Returns

If ReturnAsObject is true then returns current instance of MfByte with an updated Value; Otherwise returns Value as var.

Throws

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 MfByte and can not be converted into integer value.
Throws MfArgumentOutOfRangeException if dividing result is less then Minvalue and greater than MaxValue

Remarks

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:

mfBt := new MfByte(4)
MsgBox % mfBt.Multiply(3.2) ; displays 12

mfBt.Value := 4
MsgBox % mfBt.Multiply(-3.2) ; Throws MfArgumentOutOfRangeException result is less then MfByte.MinValue

If you need to work with decimal/float numbers see MfFloat

Example

byte := new MfByte(10, true) ; create new MfByte and set it RetrunAsObject to value to true

bNew := new MfByte(8)
MsgBox % byte.Multiply(bNew).Value ; displays 80
Msgbox % byte.Add(-5).Value ; displays 75
MsgBox % byte.Add(10).Multiply(2).Value ; displays 170