我正在实现通用对象比较方法来比较项目中类的实例。在每个类中,我都有一些值类型变量和它的关联类的一些绑定列表。使用值类型变量,我可以使用==
运算符或equal
运算符来比较它,但是使用绑定列表,我不知道如何将其强制转换bindinglist<type of associate class>
为遍历它并执行递归。
public bool IsEqual<T>(T obj1, T obj2)
{
PropertyInfo[] prop1 = obj1.GetType().GetProperties();
PropertyInfo[] prop2 = obj2.GetType().GetProperties();
for(int i = 0; i < prop1.Count; i++)
{
if(prop1[i].IsValueType && prop2[i].IsValueType)
{
if(prop1.GetValue(i) != prop2.GetValue(i))
return false
}
else
{
//This is bindinglist of associate class
//I need to cast it to iterate in perform recursion here
}
}
return true
}
那么当属性是绑定列表时如何实现递归呢?
P/S:原谅我的英语不好
更新:
仔细考虑后,我IEqualtable
按照斯蒂芬·休利特先生的建议实施了。非常感谢斯蒂芬·休利特先生。对于那些仍然想使用比较功能的人,我会给你一个我认为可行的方法:
public bool IsEqual(Object obj1, Object obj2)
{
PropertyInfo[] prop1 = obj1.GetType().GetProperties();
PropertyInfo[] prop2 = obj2.GetType().GetProperties();
for(int i = 0; i < prop1.Count; i++)
{
if(prop1[i].IsValueType && prop2[i].IsValueType)
{
if(prop1[i].GetValue(obj1, null) != prop2[i].GetValue(obj2, null))
return false;
}
else if (prop1[i].PropertyType.IsGenericType && prop2[i].PropertyType.IsGenericType) //if property is a generic list
{
//Get actual type of property
Type type = prop1[i].PropertyType;
//Cast property into type
var list1 = Convert.ChangeType(prop1[i].GetValue(obj1, null), type);
var list2 = Convert.ChangeType(prop1[i].GetValue(obj2, null), type);
if (list1.count != list2.count)
return false;
for j as integer = 0 to list1.Count - 1
{
//Recursion here
if (!IsEqual(list1(j), list2(j)))
{
return false;
}
}
}
else //if property is instance of a class
{
Type type = prop1[i].PropertyType;
Object object1 = Convert.ChangeType(prop1[i].GetValue(obj1, null), type);
Object object2 = Convert.ChangeType(prop1[i].GetValue(obj2, null), type);
//Recursion
if(!IsEqual(object1, object2))
{
return false;
}
}
}
return true;
}