Dybal.Utils.Guards.ObjectExtensions 1.0.0

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

// Install Dybal.Utils.Guards.ObjectExtensions as a Cake Tool
#tool nuget:?package=Dybal.Utils.Guards.ObjectExtensions&version=1.0.0                

Dybal.Utils.Guards.ObjectExtensions

Extension method to facilitate the creation of a ArgumentGuard from a variable.

You can use the shortcut id.Guard() instead of Guard.Argument(id). It's up to you what you prefer!

Foo(Guid id, string bar)
{
    Id = Guard.Argument(id).NotDefault();
    Bar = Guard.Argument(bar).NotNullOrWhiteSpace().MinLength(5).MaxLength(20);
}
Foo(Guid? id, string bar)
{
    Id = id.Guard().NotDefault();
    Bar = bar.Guard().NotNullOrWhiteSpace().MinLength(5).MaxLength(20);
}
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0 607 11/15/2023
1.0.0-pre-07 129 7/12/2023
1.0.0-pre-06 119 7/5/2023
1.0.0-pre-05 153 11/24/2022
1.0.0-pre-04 133 11/19/2022
1.0.0-pre-03 135 11/3/2022