Constructor()

Namespace ›› System ›› MfString ›› Methods ››
Parent Previous Next

Constructor()

Initializes a new instance of the MfString class.

OutputVar := new MfString([str, returnAsObj, read-only])

Constructor([str, retunAsObj, read-only])

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

Parameters

str

The MfString object or var containing string to create a new instance with.

returnAsObj

Determines if the current instance of MfString class will return MfString instances from functions or vars contaning strings. If omitted value is false

read-only

Determines if the current instance of MfString class will allow its Value to be altered after it is constructed.
The read-only propery will reflect this value after the classe is constructed.
If omitted value is false

Throws

Throws MfNullReferenceException if str is object but not set to an instance.
Throws MfNotSupportedException if str is object but not derived from MfPrimitive.
Throws MfNotSupportedException if class is extended

Remarks

MfString instance will contain a value of MfString.Empty if str is omitted.
Sealed Class