public static tryParse( readonly value as String, out result as ULong ) as Boolean:
Parses an ULong value from text.
| Parameter | Description |
|---|---|
value | Text to parse. |
result | Receives the parsed value on success, or zero on failure. |
true when value is a valid ULong; otherwise false.
result as ULong
assert ULong.tryParse("42", out result)
assert result == ULong(42)