CmdLine.Extensions.IsNumeric C# (CSharp) Method

IsNumeric() public static method

public static IsNumeric ( this type ) : bool
type this
return bool
        public static bool IsNumeric(this Type type)
        {
            return _numericTypes.Contains(type);
        }