ThrowIfArgument 0.0.0-alpha04
See the version list below for details.
dotnet add package ThrowIfArgument --version 0.0.0-alpha04
NuGet\Install-Package ThrowIfArgument -Version 0.0.0-alpha04
<PackageReference Include="ThrowIfArgument" Version="0.0.0-alpha04" />
paket add ThrowIfArgument --version 0.0.0-alpha04
#r "nuget: ThrowIfArgument, 0.0.0-alpha04"
// Install ThrowIfArgument as a Cake Addin #addin nuget:?package=ThrowIfArgument&version=0.0.0-alpha04&prerelease // Install ThrowIfArgument as a Cake Tool #tool nuget:?package=ThrowIfArgument&version=0.0.0-alpha04&prerelease
ThrowIfArgument
This is just another guard clause library for validating your arguments, but I enjoy the way using this API reads quite fluently. If you're like me, then you've been recreating a library of guard clauses from company to company. I finally got tired and uploaded my own version of a guard clause library.
NuGet Installation
Install the ThrowIfArgument NuGet package:
dotnet add package ThrowIfArgument
Usage
public void HelloWorld(FooBar fooBar)
{
ThrowIf.Argument.IsNull(fooBar);
Console.WriteLine($"The narwhal bacons at {fooBar.BaconsAt}");
}
Extensibility
If you feel the package is missing a feature, you can extend with your own features:
public static ThrowIfArgumentExtensions
{
public static string StartsWithThunderclap
(
this IThrowIfArgumentBuilder,
string argument,
string? message = null,
[CallerArgumentExpression("argument")] string? argumentName = null
)
{
if (!argument.StartsWith("thunderclap", StringComparison.OrdinalIgnoreCase))
{
return argument;
}
throw new ArgumentException(
string.IsNullOrWhiteSpace(message)
? $"Cannot start with 'thunderclap'."
: message,
argumentName);
}
}
Ping me if you want any new features added to the library ❤️
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ThrowIfArgument:
Package | Downloads |
---|---|
AutoIoc
Easily add dependencies to your dependency injection container with attributes. This includes services, options, and HTTP clients. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.0 | 2,253 | 5/29/2024 |
1.0.3 | 16,185 | 12/9/2022 |
1.0.2 | 871 | 12/7/2022 |
1.0.1 | 316 | 12/7/2022 |
1.0.0 | 318 | 12/6/2022 |
0.0.0-alpha04 | 115 | 12/6/2022 |
0.0.0-alpha03 | 159 | 12/2/2022 |
0.0.0-alpha02 | 119 | 12/2/2022 |
0.0.0-alpha01 | 158 | 12/2/2022 |
Initial Release