,我有一个类,其中我现在拥有三个属性,如果在对象中如果有任何一个为 null 或为空,那么我想从下面的对象中删除它是我的代码。
public class TestClass
{
public string Name { get; set; }
public int ID { get; set; }
public DateTime? DateTime { get; set; }
public string Address { get; set; }
}
TestClass t=new TestClass();
t.Address="address";
t.ID=132;
t.Name=string.Empty;
t.DateTime=null;
现在在这里我想要 TestClass 的对象,但是 Name 和 DateTime 属性不应该是它们在对象中,这可能吗?请帮我