我目前正在构建一种方法来比较两个对象列表。列表本身包含对象
List<TradeFile> list1
List<TradeFile> list2
当我比较完 list1 中的 TradeFile 对象和 list2 中的 TradeFile 对象后,我想返回一个包含所有比较的 TradeFile 和匹配状态的集合。所以它会是这样的:
TradeFile1、TradeFile2、True TradeFile1、TradeFile2、False
然后,我将使用此集合在我的流程中稍后进行报告。我应该考虑使用包含 tradefile 对象集合的字典之类的东西吗?
这可能有效,但真的感觉很乱:
Dictonary<Dictonary<TradeFile,TradeFile>,bool>
编辑:根据下面的一些答案,这就是它最终的样子。
private List CompareTradeFileObject(List list1, List list2) { List results = new List(); 布尔匹配=假;
if (list1.Count == list2.Count)
{
list1.Sort((x, y) => x.FormatName.CompareTo(y.FormatName));
list2.Sort((x, y) => x.FormatName.CompareTo(y.FormatName));
for (int i = 0; i < list1.Count; i++)
{
TradeFileCompare tf = new TradeFileCompare();
tf.TradeFile1 = list1[i];
tf.TradeFile2 = list2[i];
if (list1[i].FileExtension == list2[i].FileExtension && list1[i].FormatName == list2[i].FormatName &&
list1[i].GroupName == list2[i].GroupName && list1[i].MasterAccountId == list2[i].MasterAccountId)
{
matches = CompareTradeFileContents(list1[i].FileContents, list2[i].FileContents);
tf.IsMatch = matches;
}
else
{
tf.IsMatch = matches;
}
results.Add(tf);
}
}
else
{
matches = false;
}
return results;
}
class TradeFileCompare
{
public TradeFile TradeFile1 { get; set; }
public TradeFile TradeFile2 { get; set; }
public bool IsMatch { get; set; }
}