AcManager.Tools.Miscellaneous.LuaHelper.GetNumberValue C# (CSharp) Method

GetNumberValue() public static method

public static GetNumberValue ( string s ) : double
s string
return double
        public static double GetNumberValue(string s) {
            return FlexibleParser.TryParseDouble(s) ?? double.NaN;
        }