OutputVar := new MfPrimitive(value [, returnAsObject, setReadOnly])
Constructor for Abstract MfPrimitive Class
value
The value of from the derived class of the MfPrimitive type
returnAsObject
Boolean var that sets the state of ReturnAsObject property. Default Value is False
setReadOnly
Boolean var that sets the state of Readonly property. Default Value is False
Throws MfNotSupportedException if this Abstract class constructor is called directly.
Derived classes must call base.__New(value) in their constructors.
class MyClass extends MfPrimitive
{
__New(Value)
{
base.__New(value)
}
; Other code here...
}