UnionTypes.Toolkit 2.0.1

dotnet add package UnionTypes.Toolkit --version 2.0.1
                    
NuGet\Install-Package UnionTypes.Toolkit -Version 2.0.1
                    
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="UnionTypes.Toolkit" Version="2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="UnionTypes.Toolkit" Version="2.0.1" />
                    
Directory.Packages.props
<PackageReference Include="UnionTypes.Toolkit" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add UnionTypes.Toolkit --version 2.0.1
                    
#r "nuget: UnionTypes.Toolkit, 2.0.1"
                    
#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.
#:package UnionTypes.Toolkit@2.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=UnionTypes.Toolkit&version=2.0.1
                    
Install as a Cake Addin
#tool nuget:?package=UnionTypes.Toolkit&version=2.0.1
                    
Install as a Cake Tool

UnionTypes.Toolkit

A collection of common union types compatible with the C# Union Types feature.

Option

The Option<TValue> union type allows you to represent either Some<TValue> or None.

Result

The Result<TValue, TError> union type allows you to represent either Success<TValue> or Failure<TError>.

Union

A family of generic union types Union<T1, T2>, Union<T1, T2, T3>, etc. You can use these without declaring a unique named union type. The held value will be boxed, however.

FatUnion

A family of generic union types FatUnion<T1, T2>, FatUnion<T1, T2, T3>, etc.
You can use these without declaring a unique named union type. The held value will not be boxed, but the type has space for all cases, similar to a tuple.

Learn about using the toolkit in your project here.

Product Compatible and additional computed target framework versions.
.NET net11.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net11.0

    • 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.

Version Downloads Last Updated
2.0.1 72 8/30/2026
2.0.0 76 8/30/2026
1.2.0 536 2/3/2025
1.1.0 194 1/31/2025
1.0.0 198 1/30/2025