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
if (array?.Any() != true) { ... }
using System.Linq;
true
bool?