示例#1
0
 public static void ValidatePassword(string pass)
 {
     if (PasswordValidation.ValidatePassword(pass) == false)
     {
         Console.WriteLine("Try to enter a STRONG password!");
         GetPassword();
     }
     else
     {
         DisplayPassword(pass);
     }
 }