public class Person { public string name { get; set; } public long Serial { get; set; } public DateTime Date1 { get; set; } public DateTime? Date2 { get; set; }}
&安培;
public class PersonDto{ public string name { get; set; } public long Serial { get; set; } public DateTime Date1 { get; set; } public DateTime? Date2 { get; set; }}
我有两个由两个值相等的对象.
var person = new Person { name = null,Serial = 123,Date1 = DateTime.Now.Date,Date2 = DateTime.Now.Date }; var dto = new PersonDto { name = "AAA",Date2 = DateTime.Now.Date };
我需要通过反射检查两个类中所有属性的值.我的最终目标是定义此属性的差异值.
IList diffPropertIEs = new ArrayList(); foreach (var item in person.GetType().GetPropertIEs()) { if (item.GetValue(person,null) != dto.GetType().GetProperty(item.name).GetValue(dto,null)) diffPropertIEs.Add(item); }
我这样做了,但结果并不令人满意.结果的diffPropertIEs计数是4,但我的期望数是1.
当然,所有属性都可以具有空值.
我需要一个通用的解决方案.
我该怎么办?
示例如何使用Equals方法比较反射代码中的两个对象.
if (!Object.Equals( item.GetValue(person,null),dto.GetType().GetProperty(item.name).GetValue(dto,null))) { diffPropertIEs.Add(item); }总结
以上是内存溢出为你收集整理的c# – 如何比较两个对象之间的属性全部内容,希望文章能够帮你解决c# – 如何比较两个对象之间的属性所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)