示例#1
0
 /// <summary>
 /// Begins a finally block on the given exception block.
 ///
 /// Only one finally block can be defined per exception block, and the block cannot appear within a catch block.
 ///
 /// The given exception block must still be open.
 /// </summary>
 public FinallyBlock BeginFinallyBlock(ExceptionBlock forTry)
 {
     return(InnerEmit.BeginFinallyBlock(forTry));
 }
示例#2
0
 /// <summary>
 /// Begins a finally block on the given exception block.
 ///
 /// Only one finally block can be defined per exception block, and the block cannot appear within a catch block.
 ///
 /// The given exception block must still be open.
 /// </summary>
 public Emit BeginFinallyBlock(ExceptionBlock forTry, out FinallyBlock forFinally)
 {
     InnerEmit.BeginFinallyBlock(forTry, out forFinally);
     return(this);
 }