Equality between two enumerables

若如初见. 提交于 2019-11-30 00:22:59

问题


I have two enumerables with the exact same reference elements, and wondering why Equals wouldn't be true.

As a side question, the code below to compare each element works, but there must be a more elegant way

var other = (ActivityService) obj;
if (!AllAccounts.Count().Equals(other.AllAccounts.Count())) return false;
for (int i = 0; i < AllAccounts.Count(); i++) {
    if (!AllAccounts.ElementAt(i).Equals(other.AllAccounts.ElementAt(i))) {
        return false;
    }
}
return true;

回答1:


Have a look at the Enumerable.SequenceEqual method.

bool result = AllAccounts.SequenceEqual(other.AllAccounts);

Depending on the data type you may also need to use the overloaded method that accepts an IEqualityComparer to define a custom comparison method.




回答2:


.Equals is comparing the references of the enumerables, not the elements they contain.



来源:https://stackoverflow.com/questions/2564983/equality-between-two-enumerables

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!