dotNetTips.Spargine
dotNetTips.Spargine copied to clipboard
Open-source .NET assemblies from dotNetTips.com and David McCarter
Make sure that all the collection extensions has a DoesNotHaveItems method. Example: `public static bool DoesNotHaveItems(this ObservableCollection list) => list?.Count
Ensure that the collection Extensions classes have consistent HasItems methods. They should be like this: ``` [MethodImpl(MethodImplOptions.NoInlining)] public static bool HasItems([NotNull] this List list, [NotNull] Predicate action) { return list.TrueForAll(action);...
*Spargine *Extensions
In the dotNetTips.Spargine project.