ArchiMetrics.CodeReview.Rules.Tests.Rules.ExemptPatterns.IsExempt C# (CSharp) Method

IsExempt() public method

public IsExempt ( string word ) : bool
word string
return bool
		public bool IsExempt(string word)
		{
			return _innerRegexes.Any(x => x.IsMatch(word));
		}