Borodar.RainbowFolders.Editor.Settings.RainbowFoldersSettings.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() private static method

private static IsNullOrEmpty ( ICollection collection ) : bool
collection ICollection
return bool
        private static bool IsNullOrEmpty(ICollection collection)
        {
            return collection == null || (collection.Count == 0);
        }