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

EmitTypeBodyOpeningDelimiter() public method

If this.PlaceTypeBodyOpeningDelimitersOnNewLine is true a new line is emitted, if necessary, before calling this.EmitBlockOpeningDelimiter with the given delimiter.
public EmitTypeBodyOpeningDelimiter ( string delimiter ) : void
delimiter string A string representing the start of a type body block.
return void
    public void EmitTypeBodyOpeningDelimiter(string delimiter) {
      Contract.Requires(delimiter != null);

      if (this.PlaceTypeBodyOpeningDelimitersOnNewLine && !this.atTheStartOfANewLine) 
        this.EmitNewLine();
      this.EmitBlockOpeningDelimiter(delimiter);
    }