Argentini.Halide.H3Identify.IsNumeric C# (CSharp) Метод

IsNumeric() публичный статический Метод

Determines if a string value is numeric, but not currency.
public static IsNumeric ( string input ) : System.Boolean
input string The string to process.
Результат System.Boolean
        public static Boolean IsNumeric(string input)
        {
            Double doubleVal;
            return Double.TryParse(input, (NumberStyles.AllowExponent|NumberStyles.AllowThousands|NumberStyles.AllowDecimalPoint|NumberStyles.AllowLeadingSign), null, out doubleVal);
        }