ToString()

Namespace ›› System ›› MfParams ›› Methods ››
Parent Previous Next

ToString()

Overrides MfObject.ToString

OutputVar := instance.ToString()

ToString()

Gets a string representation of the Types contained in the instance of MfParams.

Returns

Returns var containing string value representing the types of the MfParams as comma seperated values.

Throws

Throws MfNullReferenceException if MfParams is not set to an instance.

Remarks

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".

Example

p := new MfParams()
p.AddInteger(10)
p.AddInteger(13)
p.AddString("Hello World")
str := p.ToString() ; str contains "MfInteger,MfInteger,MfString"