ResultZero 3.0.0

dotnet add package ResultZero --version 3.0.0
                    
NuGet\Install-Package ResultZero -Version 3.0.0
                    
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="ResultZero" Version="3.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ResultZero" Version="3.0.0" />
                    
Directory.Packages.props
<PackageReference Include="ResultZero" />
                    
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 ResultZero --version 3.0.0
                    
#r "nuget: ResultZero, 3.0.0"
                    
#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.
#addin nuget:?package=ResultZero&version=3.0.0
                    
Install ResultZero as a Cake Addin
#tool nuget:?package=ResultZero&version=3.0.0
                    
Install ResultZero as a Cake Tool

ResultZero

NuGet

Zero-allocation result pattern for C#.

Normally, exceptions are a great choice for error handling in C#. However, they can be notoriously slow when used for control flow. The result pattern can be better for:

  • Parsers that are expected to handle erroneous input
  • Validating user input in server APIs

ResultZero is designed with the following goals in mind:

  • Zero memory allocation for both success and error cases
  • No redundant features or bloat
  • Scalable for all use cases

Example

static Result<int> Divide(int Numerator, int Denominator) {
    if (Denominator == 0) {
        return new Error("Cannot divide by zero.");
    }
    return Numerator / Denominator;
}

// Unwrap results, throwing if error
Console.WriteLine(Divide(10, 2).Value);

// Check if results errored
if (Divide(10, 0).IsError) {
    Console.WriteLine("Denominator was 0");
}

// Advanced error handling
if (Divide(3, 1).TryGetValue(out int Value, out Error Error)) {
    Console.WriteLine(Value);
}
else {
    Error.Throw();
}

Benchmarks

Comparison between ResultZero, FluentResults and exceptions:

Method Mean Error StdDev Median Gen0 Allocated
SuccessResultZero 1.9425 ns 0.0088 ns 0.0083 ns 1.9417 ns - -
SuccessFluentResults 56.6426 ns 0.1629 ns 0.1360 ns 56.5849 ns 0.0510 160 B
SuccessExceptions 0.0028 ns 0.0030 ns 0.0028 ns 0.0022 ns - -
FailureResultZero 0.0016 ns 0.0022 ns 0.0020 ns 0.0010 ns - -
FailureFluentResults 205.3345 ns 0.7756 ns 0.6876 ns 205.3714 ns 0.1938 608 B
FailureExceptions 2,576.1063 ns 7.6907 ns 6.8176 ns 2,575.9346 ns 0.0992 320 B
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on ResultZero:

Package Downloads
HjsonSharp

A customisable streaming parser for HJSON, JSON, JSONC and JSON5.

JsonhCs

JSON for Humans.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0 191 3/16/2025
2.2.0 116 2/20/2025
2.1.0 91 2/20/2025
2.0.0 128 1/24/2025
1.0.0 112 1/19/2025