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

AppendMaybe() public method

Appends a quantifier that matches previous element zero or one time.
public AppendMaybe ( ) : void
return void
        public void AppendMaybe()
        {
            AppendMaybe(false);
        }

Same methods

PatternBuilder::AppendMaybe ( bool lazy ) : void

Usage Example

 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendMaybe();
 }
All Usage Examples Of Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder::AppendMaybe