Bytes2you.Validation 1.2.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Bytes2you.Validation --version 1.2.0.1
                    
NuGet\Install-Package Bytes2you.Validation -Version 1.2.0.1
                    
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="Bytes2you.Validation" Version="1.2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Bytes2you.Validation" Version="1.2.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Bytes2you.Validation" />
                    
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 Bytes2you.Validation --version 1.2.0.1
                    
#r "nuget: Bytes2you.Validation, 1.2.0.1"
                    
#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.
#:package Bytes2you.Validation@1.2.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Bytes2you.Validation&version=1.2.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Bytes2you.Validation&version=1.2.0.1
                    
Install as a Cake Tool

Fast, extensible, intuitive and easy-to-use C# portable library providing fluent APIs for argument validation. Gives everything you need to implement defensive programming in your .NET application

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0 127 4/16/2015
1.3.0 62 4/13/2015
1.2.0.1 130 11/26/2014
1.1.0 245 11/11/2014
1.0.0 102 10/15/2014

- Converted from ClassLibrary to PortableLibrary. Now it supports .NET Framework 4 and higher; Silverlight 4 and higher; Windows Phone 7 and higher; .NET for Windows Store apps; Xbox 360.
- Refactored the validation messages. Now every value is surrounded by <> for better readability.
- Introduced IsInstanceOfType() & IsNotInstanceOfType methods.
- Introduced IsNull() & IsNotNull() for Nullable<T> types.
- IntelliSense improvements. The members of IArgument<T> and IValidatableArgument<T> are now hidden from the editor.
- Added special float predicates - Infinity, NegativeInfinity, PositiveInfinity, NaN.
- Added special double predicates - Infinity, NegativeInfinity, PositiveInfinity, NaN.
- Better support for byte and short (no need to cast).