RegexParser.Matchers.BaseMatcher.CreateMatcher C# (CSharp) Method

CreateMatcher() public static method

public static CreateMatcher ( AlgorithmType algorithmType, string patternText, RegexOptions options ) : BaseMatcher
algorithmType AlgorithmType
patternText string
options RegexOptions
return BaseMatcher
        public static BaseMatcher CreateMatcher(AlgorithmType algorithmType, string patternText, RegexOptions options)
        {
            return CreateMatcher(algorithmType, patternText, new RegexOptionsEx(options));
        }

Same methods

BaseMatcher::CreateMatcher ( AlgorithmType algorithmType, string patternText, RegexOptionsEx options ) : BaseMatcher