Is there a function in the .NET library that will return true or false as to whether an array is null or empty? (Similar to string.IsNullOrEmpty).
string.IsNullOrEmpty
I had
No, but you can write it yourself as an extension method. Or a static method in your own library, if you don't like calling methods on a null type.