Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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. }