RustSharp 1.0.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package RustSharp --version 1.0.2
NuGet\Install-Package RustSharp -Version 1.0.2
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="RustSharp" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RustSharp --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: RustSharp, 1.0.2"
#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 RustSharp as a Cake Addin #addin nuget:?package=RustSharp&version=1.0.2 // Install RustSharp as a Cake Tool #tool nuget:?package=RustSharp&version=1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RustSharp
Using Rust coding style in C#.
Usage
You can use Result
in C#
// Wrap a method with "Result" return value
Result<int, string> ParseInt(string str)
{
try
{
return Result<int, string>.Ok(int.Parse(str));
}
catch (Exception ex)
{
return Result<int, string>.Err(ex.Message);
}
}
// Call that method
string input = Console.ReadLine()!;
var result = ParseInt(input);
// Check if value is "Ok" or "Err"
var isOk = result.IsOk;
var isErr = result.IsErr;
// Match the result values
result.Match(
(ok) => {
Console.WriteLine($"The integer you typed is {ok}");
},
(err) => {
Console.WriteLine($"The string you typed is not a integer, {err}");
});
// You can also use switch statement
switch (result)
{
case OkResult<int, string> ok:
Console.WriteLine($"The integer you typed is {ok.Value}");
break;
case ErrResult<int, string> err:
Console.WriteLine($"The string you typed is not a integer, {err.Value}");
break;
}
Use Option
in C#
// Write a simple method with Option return value
Option<float> Divide(float a, float b)
{
if (b != 0.0) {
return Option<float>.Some(a / b);
} else {
return Option<float>.None();
}
}
// call that method
var option = Divide(114, 514);
// Check if the Option has value
var isSome = option.IsSome;
var isNone = option.IsNone;
// Match the result values
option.Match(
(value) => {
Console.WriteLine($"Result: {value}");
},
() => {
Console.WriteLine("No value");
});
// Or use switch statement
switch (option)
{
case SomeOption<float> some:
Console.WriteLine($"Result: {some.Value}");
break;
default:
Console.WriteLine("No value");
break;
}
Common methods of Result and Option
// Convert Result to Option
var result = Result<string, string>.Ok("Success value");
var option = result.Ok(); // returns Option<string> contains the success value
// Unwrap Result and Option
var result = Result<string, string>.Ok("Success value");
string value = result.Unwrap();
Product | Versions 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 was computed. 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. |
.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 was computed. |
.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.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.