using System.Collections.Generic; using System.Linq; namespace Amazon.S3.Wrapper.Extensions { public static class IEnumerableExtension { public static bool IsNullOrEmpty(this IEnumerable enumerable) { if (enumerable == null) return true; return !enumerable.Any(); } } }