反射+泛型方法
public static bool ObjectIsNullOrEmpty<T>(T t) { foreach (var item in t.GetType().GetProperties()) { if (item.GetValue(t) == null) { return true; } if (item.GetValue(t).ToString() == "") { return true; } } return false; }
2021-09-28 01:52:41
反射+泛型方法
public static bool ObjectIsNullOrEmpty<T>(T t) { foreach (var item in t.GetType().GetProperties()) { if (item.GetValue(t) == null) { return true; } if (item.GetValue(t).ToString() == "") { return true; } } return false; }
下一篇:c# 取中值