Glob.Scanner.IsNumeric C# (CSharp) Method

IsNumeric() private static method

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