NORM.Guard 1.0.0

dotnet add package NORM.Guard --version 1.0.0
                    
NuGet\Install-Package NORM.Guard -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="NORM.Guard" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NORM.Guard" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="NORM.Guard" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NORM.Guard --version 1.0.0
                    
#r "nuget: NORM.Guard, 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.
#addin nuget:?package=NORM.Guard&version=1.0.0
                    
Install NORM.Guard as a Cake Addin
#tool nuget:?package=NORM.Guard&version=1.0.0
                    
Install NORM.Guard as a Cake Tool

NORM.Guard

Guard Clauses Library for C#

A lightweight, easy-to-use library for implementing guard clauses in C# applications. This library provides simple and customizable validation checks, allowing you to protect your code from common runtime errors like null, empty, or invalid values. Ideal for adding method parameter validation and error handling in a clean and efficient way.

Features

  • Validate arguments and method parameters
  • Handle null, empty, or invalid string values
  • Customize exception handling (supports custom exception types)
  • Easy to integrate into your existing projects

Installation

To install the NORM.Guard library, run the following command in your Package Manager Console or dotnet CLI:

Using NuGet Package Manager:

Install-Package NORM.Guard

Using dotnet CLI:

dotnet add package NORM.Guard

Usage

1. Null Check for Any Object

To check if an object is null and throw an exception:

using GuardClauses;

public class Example
{
    public void Method(object value)
    {
        GuardClauses.AgainstNull(value, "value cannot be null");
    }
}

2. Null or Empty Check for Strings

To check if a string is null or empty and throw an exception:

using GuardClauses;

public class Example
{
    public void Method(string value)
    {
        GuardClauses.AgainstInvalidString(value, "value cannot be null or empty");
    }
}

3. Custom Exception Type for Guard Clauses

You can also use custom exception types when validating values. Simply pass your custom exception type as a generic parameter.

using GuardClauses;

public class Example
{
    public void Method(string value)
    {
        GuardClauses.AgainstInvalidString<CustomException>(value, "value cannot be null or empty");
    }
}

public class CustomException : Exception
{
    public CustomException(string message) : base(message) { }
}

4. General Condition Check

You can also throw exceptions based on general conditions:

using GuardClauses;

public class Example
{
    public void Method(bool condition)
    {
        GuardClauses.Against<ArgumentException>(condition, "Condition failed");
    }
}

Contribution

Feel free to fork the repository and contribute to improving this library! Please submit issues and pull requests for bug fixes or enhancements.

Author

Copyright © 2025 Danis. All rights reserved.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.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.0 153 3/9/2025