TryParse()

Namespace ›› System ›› MfChar ›› Methods ››
Parent Previous Next

TryParse()

OutputVar := MfChar.TryParse(result, s)

MfChar.TryParse(byref result, s)

Converts the value of the specified string to its equivalent Unicode character. A return code indicates whether the conversion succeeded or failed.

Parameters

result

When this method returns, contains a Unicode character equivalent to the sole character in s, if the conversion succeeded, or an undefined value if the conversion failed. The conversion fails if the s parameter is null or the length of s is not 1. This parameter is passed uninitialized.

s

A string that contains a single character. Can be instance of MfString or string var.

Returns

Returns true if the s parameter was converted successfully; Otherwise false.

Remarks

The TryParse method is like the Parse method, except the TryParse method does not throw an exception if the conversion fails.

Throws

Throws MfInvalidOperationException if not called as a static method.