HandCoded.Validation.RuleSet.Remove C# (CSharp) Method

Remove() public method

Attempts to remove a given Rule from the collection held by the RuleSet.
public Remove ( Rule rule ) : Rule
rule Rule The to be removed.
return Rule
        public Rule Remove(Rule rule)
        {
            return (Remove (rule.Name));
        }

Same methods

RuleSet::Remove ( string name ) : Rule