Microsoft.Cci.SourceEmitter.EmitBlockOpeningDelimiter C# (CSharp) 메소드

EmitBlockOpeningDelimiter() 공개 메소드

Write out the given string and note that it is the opening delimiter of a block. If this.IndentBlockDelimiters is true then this.IndentationLevel will be incremented before writing out the delimiter. If this.IdentBlockContents is true then this.IndentationLevel will be incremented after writing out the delimiter.
public EmitBlockOpeningDelimiter ( string delimiter ) : void
delimiter string A string representing the start of a block.
리턴 void
    public void EmitBlockOpeningDelimiter(string delimiter) {
      Contract.Requires(delimiter != null);

      if (this.IndentBlockDelimiters) this.IndentationLevel++;
      this.EmitString(delimiter);
      if (this.IndentBlockContents) this.IndentationLevel++;
    }