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

EmitFinally() 공개 메소드

If this.PlaceFinallyOnNewLine is true then a new line will be emitted, if necessary, before calling this.EmitString with the given finally delimiter string.
public EmitFinally ( string finallyDelimiter ) : void
finallyDelimiter string A string representing the start of the else part of an if statement.
리턴 void
    public void EmitFinally(string finallyDelimiter) {
      Contract.Requires(finallyDelimiter != null);

      if (this.PlaceFinallyOnNewLine && !this.atTheStartOfANewLine) this.EmitNewLine();
      this.EmitString(finallyDelimiter);
    }