Redzen.Structures.Compact.FixedPointDecimal.TryParse C# (CSharp) Method

TryParse() public static method

Converts the string representation of a number to its FixedPointDecimal equivalent. A return value indicates whether the conversion succeeded or failed.
public static TryParse ( string s, FixedPointDecimal &result ) : bool
s string The value to parse.
result FixedPointDecimal Upon success contains the equivalent of the value of .
return bool
        public static bool TryParse(string s, out FixedPointDecimal result)
        {
            return InternalTryParse(s, out result, false);
        }