Constructor()

Namespace ›› System ›› MfSByte ›› Methods ››
Parent Previous Next

Constructor()

Initializes a new instance of the MfSByte class.

OutputVar := new MfByte([byte, returnAsObj, readonly])

Constructor([byte, retunAsObj, readonly])

Initializes a new instance of the MfSByte class optionally setting the Value property, ReturnAsObject property and the Readonly property.

Parameters

byte

The MfSByte object or var containing value to create a new instance with.

returnAsObj

Determines if the current instance of MfSByte class will return MfSByte instances from functions or vars containing integer. If omitted value is false.

readonly

Determines if the current instance of MfBool class will allow its Value to be altered after it is constructed.
The Readonly property will reflect this value after the classes is constructed.
If omitted value is false

Remarks

Sealed class.
This constructor initializes the MfSByte with the integer value of byte.
Value property to the value of byte.
ReturnAsObject will have a value of returnAsObj
Readonly property will have a value of readonly
If Readonly is true then any attempt to change the underlying value will result in MfNotSupportedException being thrown.

Throws

Throws MfNotSupportedException if class is extended.
Throws MfArgumentException if error in parameter.
Throws MfNotSupportedException if incorrect type of parameters or incorrect number of parameters.

Example

; creates a default instance of class with value of 0, ReturnAsObject is false and read-only is false
MyByte := new MfSByte()

; creates a instance of class with value of 0, ReturnAsObject is true and read-only is false
MyByte := new MfSByte(, true)

; creates a instance of class with value of 11, ReturnAsObject is false and read-only is true
MyByte := new MfSByte(11, , true)