using System.Collections.Generic; namespace BS.Shared.Extensions { public static class IListStringExtensions { public static bool ContainsNullOrEmpty(this IList pList) { foreach (string iString in pList) { if (string.IsNullOrEmpty(iString)) { return true; } } return false; } } }