16
votes
What is a solid, elegant, reusable piece of code for determining if an IEnumerable is empty, in .NET?
!enumerable.Any()
Will attempt to grab the first element only.
To expand on how/why this works, any determines if any of the components of an IEnumerable match a given function, if …
7
votes
Testing if an Object is a Dictionary in C#
Check to see if it implements IDictionary.
See the definition of System.Collections.IDictionary to see what that gives you.
if (listBox.ItemsSource is IDictionary)
{
Dic …
