AddPattern() public method

public AddPattern ( IPatternMatcher matcher, bool caseSensitive, bool needSeparators, object tags ) : void
matcher IPatternMatcher
caseSensitive bool
needSeparators bool
tags object
return void
示例#1
0
        public Tokenizer AddPattern(IPatternMatcher matcher, bool caseSensitive, bool needsSeparators, params object[] tags)
        {
            ThrowIfImmutable();

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