NORM.Guard
1.0.0
dotnet add package NORM.Guard --version 1.0.0
NuGet\Install-Package NORM.Guard -Version 1.0.0
<PackageReference Include="NORM.Guard" Version="1.0.0" />
<PackageVersion Include="NORM.Guard" Version="1.0.0" />
<PackageReference Include="NORM.Guard" />
paket add NORM.Guard --version 1.0.0
#r "nuget: NORM.Guard, 1.0.0"
#addin nuget:?package=NORM.Guard&version=1.0.0
#tool nuget:?package=NORM.Guard&version=1.0.0
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 | Versions 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. |
-
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 |