Rop.Results8 1.0.21

dotnet add package Rop.Results8 --version 1.0.21
NuGet\Install-Package Rop.Results8 -Version 1.0.21
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="Rop.Results8" Version="1.0.21" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rop.Results8 --version 1.0.21
#r "nuget: Rop.Results8, 1.0.21"
#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 Rop.Results8 as a Cake Addin
#addin nuget:?package=Rop.Results8&version=1.0.21

// Install Rop.Results8 as a Cake Tool
#tool nuget:?package=Rop.Results8&version=1.0.21

Rop.Results8

Rop.Result is a C# library that provides a way to handle errors without exceptions. Instead of throwing an exception, functions return a Result object that can be either a Success or a Failed state.

Installation

To install the library, you can use the NuGet package manager. In the Visual Studio terminal, run the following command:

Install-Package Rop.Results8

Usage

To use the library, you need to import the Rop.Result namespace:

using Rop.Result;

Then you can create Result objects in diferent vias:

using Rop.Result;

public Result<int> Divide1(int dividend, int divisor)
{
    if (divisor == 0)
    {
        return Result.Failure<int>("Cannot divide by zero.");
    }
    else
    {
        return Result.Success(dividend / divisor);
    }
}
public Result<int> Divide2(int dividend, int divisor)
{
    if (divisor == 0)
    {
        return Error.Fail("Cannot divide by zero.");
    }
    else
    {
        return dividend / divisor;
    }
}

You can also use the Result object in a fluent way:

var result = Result.Success(10)
    .Bind(x => Divide(x, 2))
    .Bind(x => Divide(x, 0));
Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.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
1.0.21 73 4/30/2024
1.0.20 74 4/30/2024
1.0.19 81 4/24/2024
1.0.18 72 4/23/2024
1.0.17 81 4/11/2024
1.0.16 68 4/9/2024
1.0.15 72 4/5/2024
1.0.14 57 4/5/2024
1.0.13 81 4/4/2024
1.0.12 74 4/4/2024
1.0.11 70 4/4/2024
1.0.10 70 4/3/2024
1.0.9 80 4/2/2024
1.0.8 68 4/2/2024
1.0.7 87 3/21/2024
1.0.6 69 3/21/2024
1.0.5 83 3/21/2024
1.0.4 71 3/21/2024
1.0.3 78 3/21/2024
1.0.2 85 3/21/2024
1.0.1 97 3/19/2024