Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendCountFrom C# (CSharp) Метод

AppendCountFrom() публичный Метод

Appends a quantifier that matches previous element at least specified number of times.
is less than zero.
public AppendCountFrom ( int minCount ) : void
minCount int A minimal number of times the pattern must be matched.
Результат void
        public void AppendCountFrom(int minCount)
        {
            AppendCountFrom(minCount, false);
        }

Same methods

PatternBuilder::AppendCountFrom ( int minCount, bool lazy ) : void