I use Bool IsCollectionNullOrEmpty = !(Collection?.Any()??false);
. Hope this helps.
Breakdown:
Collection?.Any()
will return null
if Collection is null, and false
if Collection is empty.
Collection?.Any()??false
will give us false
if Collection is empty, and false
if Collection is null
.
Complement of that will give us IsEmptyOrNull
.