我有多个属性的课程;
public class Employee
{
public string TYPE { get; set; }
public int? SOURCE_ID { get; set; }
public string FIRST_NAME { get; set; }
public string LAST_NAME { get; set; }
public List<Department> departmentList { get; set; }
public List<Address> addressList { get; set; }
}
有时,这个对象会在任何属性中给我返回值
Employee emp = new Employee();
emp.FIRST_NAME= 'abc';
其余值为null。还行吧
但是,如何检查对象属性中的所有值都为空
喜欢string.IsNullOrEmpty()对象吗?
我现在正在检查
if(emp.FIRST_NAME == null && emp.LAST_NAME == null && emp.TYPE == null && emp.departmentList == null ...)
千万里不及你
饮歌长啸
相关分类