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

AppendCountInternal() приватный Метод

private AppendCountInternal ( int exactCount ) : void
exactCount int
Результат void
        internal void AppendCountInternal(int exactCount)
        {
            AppendDirect('{');
            AppendDirect(exactCount);
            AppendDirect('}');

            if (_fBuilder)
            {
                _builder.LastLine.QuantifierKind = QuantifierKind.Count;
                _builder.LastLine.Count1 = exactCount;
            }
        }

Same methods

PatternBuilder::AppendCountInternal ( int minCount, int maxCount ) : void

Usage Example

Пример #1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     if (_count2 == -1)
         builder.AppendCountInternal(_count1);
     else
         builder.AppendCountInternal(_count1, _count2);
 }
All Usage Examples Of Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder::AppendCountInternal