public static bool IsNullOrCountLTE0(this DataTable dt)
{ if (dt == null || dt.Rows.Count <= 0) return true; return false; }public static bool IsNullOrEmpty(this string str) { if (string.IsNullOrEmpty(str)) return true; return false; }
则可以如下使用:
DataTalbe dt=new DataTable();
dt.IsNullOrCountLTE0();
string str=”“;
str.IsNullOrEmpty();