Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendCountFrom C# (CSharp) Method

AppendCountFrom() public method

Appends a quantifier that matches previous element at least specified number of times.
is less than zero.
public AppendCountFrom ( int minCount, bool lazy ) : void
minCount int A minimal number of times the pattern must be matched.
lazy bool Indicates whether the quantifier will be greedy or lazy.
return void
        public void AppendCountFrom(int minCount, bool lazy)
        {
            if (minCount < 0)
                throw new ArgumentOutOfRangeException(nameof(minCount));

            AppendCountFromInternal(minCount);

            if (lazy)
                AppendLazy();
        }

Same methods

PatternBuilder::AppendCountFrom ( int minCount ) : void