Overrides MfObject.Equals()
OutputVar := instance.Equals(value)
Gets if this instance Value is the same as the obj instance.Value
value
The Object or var containing, integer to compare to current instance.
Can be any type that matches IsNumber, var integer or var string of integer numbers.
Returns Boolean value of true if this Value and value are equal; Otherwise false.
Throws MfNullReferenceException if called as a static method
If value is unable to be converted to a integer then false will be returned.
AutoHotkey has an integer upper limit of MfInt64.MaxValue. As a precaution all integer values passed into MfUInt64 methods can be wrapped in double quotes. eg: i := new MfUInt64("10", true)
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.