为string类型,加一个扩展方法,IsNullOrEmpty,事实上.net已经把这个扩展方法集成了
还可以设计一个过滤Email的扩展方法
class Program
class Program
{
static void Main(string[] args)
{
string newString = null;
if (newString.IsNullOrEmpty())
{
// Do Something
}
}
}
public static class Extensions
{
public static bool IsNullOrEmpty(this string s)
{
return (s == null || s.Trim().Length == 0);
}
public static bool
IsValidEmailAddress(this string s)
{
Regex regex = new
Regex(@"^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$");
return regex.IsMatch(s);
}
}
作者:仓储大叔,张占岭,
荣誉:微软MVP