DeepEqual.Bindings
1.0.0.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package DeepEqual.Bindings --version 1.0.0.2
NuGet\Install-Package DeepEqual.Bindings -Version 1.0.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DeepEqual.Bindings" Version="1.0.0.2"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DeepEqual.Bindings --version 1.0.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DeepEqual.Bindings, 1.0.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DeepEqual.Bindings as a Cake Addin #addin nuget:?package=DeepEqual.Bindings&version=1.0.0.2 // Install DeepEqual.Bindings as a Cake Tool #tool nuget:?package=DeepEqual.Bindings&version=1.0.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
The most common usage looks like this:
var a1 = new A1 { B1 = new B1 { Y = "value" } };
var a2 = new A2 { B2 = new B2 { Y = "value" } };
var comparer = ExtendedComparer<A1, A2>.New()
.Bind(x1 => x1.B1, x2 => x2.B2);
var result = comparer.Compare(a1, a2);
//result is true.
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.5.2
- DeepEqual (> 1.6.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Available functionalities:
ExtendedComparer.Bind()
ExtendedComparer.Skip()
ExtendedComparer.Reversed()
Unit tests are added