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

EmitBlockOpeningDelimiter() public method

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.
return void
    public void EmitBlockOpeningDelimiter(string delimiter) {
      Contract.Requires(delimiter != null);

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