Exemple #1
0
        public static bool emailCheck(string mail)
        {
            bool   check;
            regexs emailRegex = new regexs();

            check = emailRegex.Email_regex(mail);
            if (check == true)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }