Bloom.Api.I18NHandler.IsInteger C# (CSharp) Method

IsInteger() private static method

private static IsInteger ( string key ) : bool
key string
return bool
        private static bool IsInteger(string key)
        {
            int dummy;
            return int.TryParse(key, out dummy);
        }