email validation check username with domain name in C#.net .net 4.0 code example
Example: check if string is email c#
bool IsValidEmail(string email)
{
try {
var addr = new System.Net.Mail.MailAddress(email);
return addr.Address == email;
}
catch {
return false;
}
}