RegexParser.Patterns.BasePattern.BasePattern C# (CSharp) Method

BasePattern() protected method

protected BasePattern ( PatternType type, int minCharLength ) : System
type PatternType
minCharLength int
return System
        protected BasePattern(PatternType type, int minCharLength)
        {
            Type = type;
            MinCharLength = minCharLength;
        }