ValueUtils 1.0.1
See the version list below for details.
dotnet add package ValueUtils --version 1.0.1
NuGet\Install-Package ValueUtils -Version 1.0.1
<PackageReference Include="ValueUtils" Version="1.0.1" />
paket add ValueUtils --version 1.0.1
#r "nuget: ValueUtils, 1.0.1"
// Install ValueUtils as a Cake Addin #addin nuget:?package=ValueUtils&version=1.0.1 // Install ValueUtils as a Cake Tool #tool nuget:?package=ValueUtils&version=1.0.1
Provides utilities to make working with classes having value-semantics more practical in C#.
Just write "sealed class MyClass : ValueObject<MyClass>" to add value semantics to your class.
In particular, includes a efficient hash-code & equality function generators for arbitrary objects
using runtime code generation to result in code similar to what you'd write by hand.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added ValueObject<> to simplify the creation of value-objects.