Overrides MfObject.ToString
OutputVar := instance.ToString()
Gets a string representation of the Types contained in the instance of MfParams.
Returns var containing string value representing the types of the MfParams as comma seperated values.
Throws MfNullReferenceException if MfParams is not set to an instance.
The Order in is always the order out for the MfParams ToString Method. If you add MfString, MfString, MfChar, MfInteger in that order then ToString will return them in the same order "MfString,MfString,MfChar,MfInteger".
p := new MfParams()
p.AddInteger(10)
p.AddInteger(13)
p.AddString("Hello World")
str := p.ToString() ; str contains "MfInteger,MfInteger,MfString"