OutputVar := MfChar.TryParse(result, s)
Converts the value of the specified string to its equivalent Unicode character. A return code indicates whether the conversion succeeded or failed.
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 true if the s parameter was converted successfully; Otherwise false.
The TryParse method is like the Parse method, except the TryParse method does not throw an exception if the conversion fails.
Throws MfInvalidOperationException if not called as a static method.