Project Description
NValidation makes it easier to handle the cross-cutting concern 'validation' by providing a common way to define validation rules for object.
It's developed in C# .NET and compatible with all versions of the .NET Framework.
Rule definition example
[NotNullOrEmpty]
[MaxLength(50)]
public String Name
{
get;
set;
}