AppendAssertion() public method

Appends a positive lookahead assertion with a specified content.
public AppendAssertion ( object content ) : void
content object An assertion content.
return void
コード例 #1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendBackAssertion(_backAssertion);
     builder.Append(_content);
     builder.AppendAssertion(_assertion);
 }