Dime.Linq is a utility library which contains a set of extensions for the System.Linq namespace. Check out the wiki for an overview of the extension methods.
- You must have Visual Studio 2019 Community or higher.
- The dotnet cli is also highly recommend
- Run dotnet restore
- Run dotnet build
- Run dotnet test
Use the package manager NuGet to install Dime.Linq:
dotnet add package Dime.Linq
using System.Linq;
public void MyMethod(IEnumerable<Customer> customerList)
{
(IEnumerable<Customer> success, IEnumerable<Customer> failed)
= customerList.Fork(x => x.Address == "New York");
}
Pull requests are welcome. Please check out the contribution and code of conduct guidelines.