BellevueCollege.Toolkit.IsExpectedPIN C# (CSharp) Метод

IsExpectedPIN() публичный статический Метод

public static IsExpectedPIN ( string strValue ) : bool
strValue string
Результат bool
        public static bool IsExpectedPIN(string strValue)
        {
            return Regex.IsMatch(strValue, "^\\d{1,6}$");
        }