Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static bool ValidarEmail(string direccionEmail)
- {
- try
- {
- MailAddress email = new MailAddress(direccionEmail);
- return true;
- }
- catch (FormatException fex)
- {
- return false;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement