Argentini.Halide.H3Identify.IsPureNumeric C# (CSharp) 메소드

IsPureNumeric() 공개 정적인 메소드

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.
리턴 System.Boolean
        public static Boolean IsPureNumeric(string input)
        {
            Double doubleVal;
            return Double.TryParse(input, 0, null, out doubleVal);
        }