Registered by Manuel de la Peña

Provides a Mono lib to perform fluent argument validation in C#. Inspired on http://blog.getpaint.net/2008/12/06/a-fluent-approach-to-c-parameter-validation/

This library provides with a Fluent interface to provide argument validation. The arguments can be easily validated in the following way:

public void Add(String propertyName, Object data){
    ValidateArgs.Begin()
       .IsNotNull(propertyName, "propertyName")
       .Contains(Keys, propertyName)
       .Check();
 // code
}

Project information

Maintainer:
Manuel de la Peña
Driver:
Not yet selected
Licence:
GNU GPL v2, GNU GPL v3

RDF metadata

View full history Series and milestones

trunk series is the current focus of development.

Get Involved

  • warning
    Report a bug
  • warning
    Ask a question
  • warning
    Help translate

Downloads

MacacoValidation does not have any download files registered with Launchpad.