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

EmitCaseClosingDelimiter() public method

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

      if (this.IndentCaseContents) this.IndentationLevel--;
      this.EmitString(delimiter);
      if (this.IndentCaseDelimiters) this.IndentationLevel--;
    }