OutputVar := instance.Add(value)
Adds MfByte value to current instance of MfByte.
value
The value to add to the current instance.
Can be any type that matches IsNumber or var integer.
Returns current instance of MfByte with an update value.
Throws MfNullReferenceException if called as a static method
Throws MfNotSupportedException if Readonly is true.
Throws MfArgumentNullException if value is null.
Throws MfArgumentException if value is not an instance of MfByte and can not be converted into integer value.
Throws MfArgumentOutOfRangeException if adding value is less then Minvalue and greater than MaxValue
If value is a float or MfFloat instance then method will alway round down for positive number and round up for negative numbers. For instance 2.8 is converted to 2 and -2.8 is converted to -2.
b := new MfByte(10, true) ; create new MfByte and set it RetrunAsObject to value to true
b.Add(2)
bOth := new MfByte(8)
MsgBox % b.Add(bOth).Value ; displays 20
Msgbox % b.Add(-10).Value ; displays 10
MsgBox % b.Add(10).Add(10).Value ; displays 30