OutputVar := MfParams.S(value)
Creates a new MfString object containing value
value
The var with the new string value.
Returns an MfString instance containing value
Throws MfArgumentException if value is object but not a valid instance of MfString.
Throws MfException with inner exception if unable to create new instance of MfString.
Static Method.
If value argument is instance of MfString then that creates and returns a new MfString containing the same value.
This method is a static primitive generator.
strObj := MfParams.S("Hello World")
MsgBox % strObj.Value ; Displays Hello World