I have a List (Foo) and I want to see if it's equal to another List (foo). What is the fastest way ?
|
1
|
|
|
|
|
|
Here are the steps I would do:
Here are some suggestions for the method:
|
||
|
|
|
|
Assuming you mean that you want to know if the CONTENTS are equal (not just the list's object reference.) If you will be doing the equality check much more often than inserts then you may find it more efficient to generate a hashcode each time a value is inserted and compare hashcodes when doing the equality check. Note that you should consider if order is important or just that the lists have identical contents in any order. Unless you are comparing very often I think this would usually be a waste. |
||
|
|
|
|
From 3.5 onwards you may use a LINQ function for this:
It also knows an overload to provide your own comparer |
||
|
|
|
Something like this maybe using Match Action.
|
||||
|
|
|
Something like this:
Some additional error checking (e.g. null-checks) might be required. |
|||
|
