Check out example codes for "check if ienumerable is empty c#". It will help you in understanding the concepts better.
Code Example 1
IEnumerable<T> enumerable = new List<int>();
if(!enumerable.Any())
{
throw new InvalidOperationException();
}
Learn ReactJs, React Native from akashmittal.com