Search Results

1
vote

How to find out whether two ICollection<T> collections contain the same objects

If the entries need to be in the same order (besides being the same), then I suggest - as an optimization - that you iterate both collections at the same time and compare the current entry in each …