Microsoft.Cci.SourceEmitter.EmitBlockClosingDelimiter C# (CSharp) Method

EmitBlockClosingDelimiter() public method

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

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