dotNetTips.Spargine icon indicating copy to clipboard operation
dotNetTips.Spargine copied to clipboard

Open-source .NET assemblies from dotNetTips.com and David McCarter

Results 45 dotNetTips.Spargine issues
Sort by recently updated
recently updated
newest added

Make sure that all the collection extensions has a DoesNotHaveItems method. Example: `public static bool DoesNotHaveItems(this ObservableCollection list) => list?.Count

enhancement

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);...

enhancement

Use Channel to create a thread-safe queue type.

enhancement

Write unit tests for this new class.

unit tests

In the dotNetTips.Spargine project.

Setup in GitHub

enhancement