Rop.Results8 1.0.26

dotnet add package Rop.Results8 --version 1.0.26
NuGet\Install-Package Rop.Results8 -Version 1.0.26
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.26" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rop.Results8 --version 1.0.26
#r "nuget: Rop.Results8, 1.0.26"
#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.26

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

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 (3)

Showing the top 3 NuGet packages that depend on Rop.Results8:

Package Downloads
Rop.Winforms8.Basic

Helper classes for Winforms

Rop.Winforms8.Mvc

Create views for controls

Rop.Winforms8.ValueControls

Create valuecontrols

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.26 105 5/17/2024
1.0.25 63 5/17/2024
1.0.24 69 5/17/2024
1.0.23 69 5/17/2024
1.0.22 71 5/17/2024
1.0.21 104 4/30/2024
1.0.20 86 4/30/2024
1.0.19 89 4/24/2024
1.0.18 78 4/23/2024
1.0.17 86 4/11/2024
1.0.16 72 4/9/2024
1.0.15 76 4/5/2024
1.0.14 61 4/5/2024
1.0.13 85 4/4/2024
1.0.12 78 4/4/2024
1.0.11 74 4/4/2024
1.0.10 75 4/3/2024
1.0.9 85 4/2/2024
1.0.8 73 4/2/2024
1.0.7 96 3/21/2024
1.0.6 74 3/21/2024
1.0.5 87 3/21/2024
1.0.4 75 3/21/2024
1.0.3 85 3/21/2024
1.0.2 92 3/21/2024
1.0.1 103 3/19/2024