Carubbi.Extensions
1.2.3
dotnet add package Carubbi.Extensions --version 1.2.3
NuGet\Install-Package Carubbi.Extensions -Version 1.2.3
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="Carubbi.Extensions" Version="1.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Carubbi.Extensions --version 1.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Carubbi.Extensions, 1.2.3"
#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 Carubbi.Extensions as a Cake Addin #addin nuget:?package=Carubbi.Extensions&version=1.2.3 // Install Carubbi.Extensions as a Cake Tool #tool nuget:?package=Carubbi.Extensions&version=1.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Carubbi.Extensions
A simple library extension-method based to common tasks
- Datatype conversions:
Rather than
int? intVariable;
try
{
intVariable = Convert.ToInt32(str);
}
catch(Exception ex)
{
intVariable = defaultValue;
}
or
if (!int.TryParse(str, out int intValue))
{
intValue = defaultValue;
}
You just use
int? intVariable = str.To<int>(defaultValue);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (13)
Showing the top 5 NuGet packages that depend on Carubbi.Extensions:
Package | Downloads |
---|---|
Carubbi.Cards
A simple and powerfull card games framework |
|
Carubbi.ObjectXMFDisplay
Simulador de Emulador de Terminal Mainframe baseado na interface do Microfocus Rumba |
|
Carubbi.DiffAnalyzer
Analisador de diferenças entre objetos |
|
Carubbi.Google.TTS
Google Text-to-speech proxy |
|
Carubbi.Mainframe
Wrapper de Emulador de Terminal Mainframe Microfocus Rumba |
GitHub repositories
This package is not used by any popular GitHub repositories.