Skip to content

Instantly share code, notes, and snippets.

@jbogard
Created July 29, 2013 15:33
Show Gist options
  • Save jbogard/6105190 to your computer and use it in GitHub Desktop.
Save jbogard/6105190 to your computer and use it in GitHub Desktop.
public interface IValidator<in T> {
}
public class CompositeValidator<T> : IValidator<T> {
public CompositeValidator(params IValidator<T>[] validators) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment