When I want to do something with a list I first check it if is not null or contains element ( not to blow a foreach) and I usually use list.Any() but wich is best option - to use list.Count > 0, or to use list.Any()?
|
|
|||||||||
|
Also check out this question: Which method performs better: .Any() vs .Count() > 0? |
||||
|
|
|
I use I personally avoid LINQ like the plague (because of its slow speed), and there's no reason to use extension methods here at all anyway. However, a better solution would probably be to make your own version of |
|||
|
|
|
But if the items is an A great tool is Reflector, the .Net source code and the Mono source code which allows you to see how things are implemented. |
|||||||||||
|
|
In an array you have to use |
||||
|
|