ArchiMetrics.CodeReview.Rules.Tests.Rules.ExemptPatterns.IsExempt C# (CSharp) 메소드

IsExempt() 공개 메소드

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