OutputVar := instance.Divide(value)
Divides the current instance of MfByte by the divisor value.
value
The Divisor value to divide the current instance Value by.
Can be any type that matches IsNumber. or var number.
If ReturnAsObject is true then returns current instance of MfByte 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 MfByte 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/2 but rather a float number such as 8/3 (8/3 = 2.6666...) then the result will always be the whole number portion of the operation. For example:
mfBt := new MfByte(8)
MsgBox % mfBt.Divide(3) ; displays 2
mfBt.Value := 8
MsgBox % mfBt.Divide(-3) ; Throws MfArgumentOutOfRangeException result is less then MfByte.MinValue
i := new MfByte(80, true) ; create new MfInt64 and set it RetrunAsObject to value to true
iNew := new MfByte(8)
MsgBox % i.Divide(iNew).Value ; displays 10
Msgbox % i.Add(-5).Value ; displays 5
MsgBox % i.Add(10).Divide(2).Value ; displays 14