using System.Collections.Generic; using System.Linq; namespace Cute; public static class IEnumerableExtensions { public static bool IsNotNullOrEmpty(this IEnumerable enumerable) { return enumerable?.Any() ?? false; } }