At the moment I use the following procedure to determine if a list has elements:
if (aList.Count > 0)
{
//doStuff
}
I'm asking myself if there is a more elegant way to find out if there are elements, without using a comparison.
|
It is also descriptive. |
|||
|
You can use linq:
|
|||
|
|
I suppose if it's the wording that bothers you and you want a more expressive way to describe it, you could write a custom extension method:
Then you'd use it like this:
It's a matter of personal preference, really. The term However, what I personally don't like about it is that it's a method rather than a property. (I personally would love if C# added support for "extension properties.") There are exceptions, but to me intuitively I expect a property to just give me information on the state of something (hopefully in Again, it's all a matter of personal preference. Just an option that's available to you. |
|||
|
|
|
you can write extension method as below
see this question for more info - Checking if a list is empty with LINQ |
|||
|
|
|
This is already a most elegant solution. Can use (just an example) |
|||
|
|
|
I wrapped this check in an extension (Null checking AND checking for items is cumbersome imo)
|
|||
|
|
Any()means you have to referenceLINQ... not always possible or optimal. – Oded♦ Apr 11 '12 at 14:31