YAGuard 1.1.1
See the version list below for details.
dotnet add package YAGuard --version 1.1.1
NuGet\Install-Package YAGuard -Version 1.1.1
<PackageReference Include="YAGuard" Version="1.1.1" />
paket add YAGuard --version 1.1.1
#r "nuget: YAGuard, 1.1.1"
// Install YAGuard as a Cake Addin #addin nuget:?package=YAGuard&version=1.1.1 // Install YAGuard as a Cake Tool #tool nuget:?package=YAGuard&version=1.1.1
Yet Another Guard argument validation package. The speciality is that validation statements only take the argument, but they don't need the name of the argument as a second argument; still, the name of the argumnet is included in validation exceptions thrown. Usage: public void MyFunc(string myArg) { Guard.AgainstNull(myArg); // or Guard.AgainstNull( () ⇒ myArg ); // or string validatedArg = Guard.AgainstNull(myArg); } In case myArg is null, this will throw an ArgumentNullException with the correct argument name.
Supports single line argument checking and assignment as well: string result = Guard.AgainstNull(string source); will set result to source in case it is not null, or throw an appropriate ArgumentNullException in case it is null.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. net9.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 2.1
- No dependencies.
-
.NETFramework 4.5.2
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on YAGuard:
Package | Downloads |
---|---|
B.MaskedTimers
A timer with a set of intervals to mask when the timer can fire. The timer will only fire within the specified intervals. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.0 | 376 | 6/24/2024 |
1.1.4 | 3,622 | 10/10/2023 |
1.1.3 | 4,655 | 3/5/2022 |
1.1.2 | 2,089 | 1/2/2021 |
1.1.1 | 340 | 12/29/2020 |
1.1.0 | 417 | 12/28/2020 |
1.0.4 | 353 | 12/27/2020 |
1.0.3 | 380 | 11/28/2020 |
1.0.2 | 384 | 11/28/2020 |
1.0.1 | 424 | 11/28/2020 |
1.0.0 | 445 | 11/28/2020 |
0.0.5 | 497 | 3/5/2020 |
0.0.4 | 445 | 2/5/2020 |
0.0.3 | 506 | 2/3/2020 |
0.0.2 | 568 | 2/2/2020 |
0.0.1 | 603 | 2/2/2020 |
0.0.0 | 474 | 2/2/2020 |
Simplified (optimized?) expression evaluation.
Identified issue with optimized release builds.