Let's say there are
List<string> a1 = new List<string>();
List<string> a2 = new List<string>();
Is there way to do like this?
if (a1 == a2)
{
}
|
|
If you want to check that the elements inside the list are equal and in the same order, you can use
See it working online: ideone |
|||||||||
|
|
You could also use Except(produces the set difference of two sequences) to check whether there's a difference or not:
|
|||||
|
|
I discovered that I wanted to test this myself so I created two methods:
The second method is a bit of code I encountered and wondered if it could be refactored to be "easier to read." (And also wondered if LINQ optimization would be faster.) As it turns out, with two lists containing 32k strings, over 100 executions:
I usually prefer LINQ for brevity, performance, and code readability; but in this case I think a loop-based method is preferred. Edit: I recompiled using optimized code, and ran the test for 1000 iterations. The results still favor the loop (even more so):
Tested using Visual Studio 2010, C# .NET 4 Client Profile on a Core i7-920 |
|||
|
|
|
You can check in all the below ways for a List
|
|||||||
|