Argentini.Halide.H3Identify.IsPureNumeric C# (CSharp) Method

IsPureNumeric() public static method

Determines if a string value is numeric, with no symbols, commas, or decimal points.
public static IsPureNumeric ( string input ) : System.Boolean
input string The string to process.
return System.Boolean
        public static Boolean IsPureNumeric(string input)
        {
            Double doubleVal;
            return Double.TryParse(input, 0, null, out doubleVal);
        }