コード例 #1
0
 private bool CheckExistingEmail()
 {
     if (contactHelper.DoesEmailExist(txt_email.Text.Trim()))
     {
         return(true);
     }
     this.AddEmailErrorIcon();
     return(false);
 }