Advertisement
Fhernd

Validaciones.cs

Jul 18th, 2014
609
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. public static bool ValidarEmail(string direccionEmail)
  2. {
  3.     try
  4.     {
  5.         MailAddress email = new MailAddress(direccionEmail);
  6.  
  7.         return true;
  8.     }
  9.     catch (FormatException fex)
  10.     {
  11.         return false;
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement