当我使用随机函数时它正在工作它给我3个随机值,但是当我使用包含数字的变量时,数字保持不变?
public static bool IsEmailAddress(this string value)
{
try
{
new System.Net.Mail.MailAddress(value);
return true;
}
catch ()
{
return false;
}
}