NPetrovich.Inflection.CaseInflection.Find C# (CSharp) Method

Find() private method

private Find ( string name, List rules, bool matchWholeWord, HashSet tags ) : Rule
name string
rules List
matchWholeWord bool
tags HashSet
return NPetrovich.Rules.Data.Rule
        private Rule Find(string name, List<Rule> rules, bool matchWholeWord, HashSet<string> tags)
        {
            return rules.FirstOrDefault(rule => MatchRule(name, rule, matchWholeWord, tags));
        }