有没有人准备好MaskedTextBox的电子邮件掩码?
例如
[email protected] / [email protected] / [email protected] / [email protected] /
ps。请不要建议RegEx!
最佳答案
尝试这个
bool IsValidEmail(string email)
{
try {
var mail = new System.Net.Mail.MailAddress(email);
return true;
}
catch {
return false;
}
}
关于c# - C#中MaskedTextBox的电子邮件掩码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21107782/