public bool IfLastName() { if (!HaveOneNumChar.CheckTherIsNum(LastName)) { for (int i = 0; i < LastName.Length; i++) { if (LastName.Length > 2) { return(Successt = true); } } } return(Successt = false); }
public bool IfPass() { if (HaveOneNumChar.CheckTherIsNum(Password)) { for (int i = 0; i < Password.Length; i++) { if (Password.Length >= 6) { return(Successt = true); } } } return(Successt = false); }