AddPattern() 공개 메소드

public AddPattern ( IPatternMatcher matcher, bool caseSensitive, bool needSeparators, object tags ) : void
matcher IPatternMatcher
caseSensitive bool
needSeparators bool
tags object
리턴 void
예제 #1
0
        public Tokenizer AddPattern(IPatternMatcher matcher, bool caseSensitive, bool needsSeparators, params object[] tags)
        {
            ThrowIfImmutable();

            tree.AddPattern(matcher, caseSensitive, needsSeparators, tags);
            return(this);
        }