Glob.Scanner.IsNumeric C# (CSharp) 메소드

IsNumeric() 개인적인 정적인 메소드

private static IsNumeric ( char c ) : bool
c char
리턴 bool
        private static bool IsNumeric(char c) => char.IsDigit(c) || c == '.' || c == '-';
    }