cn.jpush.api.util.StringUtil.IsInt C# (CSharp) Method

IsInt() public static method

public static IsInt ( string value ) : bool
value string
return bool
        public static bool IsInt(string value)
        {
            return Regex.IsMatch(value, @"^[+-]?\d*$");
        }