AppendNegativeBackAssertion() 공개 메소드

Appends a negative lookbehind assertion with a specified content.
public AppendNegativeBackAssertion ( object content ) : void
content object An assertion content.
리턴 void
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendNegativeBackAssertion(_backAssertion);
     builder.Append(_content);
     builder.AppendNegativeAssertion(_assertion);
 }