Exemple #1
0
 /// <summary>
 /// Start a new exception block.  This is roughly analogous to a `try` block in C#, but an exception block contains it's catch and finally blocks.
 /// </summary>
 public ExceptionBlock BeginExceptionBlock()
 {
     return(InnerEmit.BeginExceptionBlock());
 }
Exemple #2
0
 /// <summary>
 /// Start a new exception block.  This is roughly analogous to a `try` block in C#, but an exception block contains it's catch and finally blocks.
 /// </summary>
 public Emit BeginExceptionBlock(out ExceptionBlock forTry)
 {
     InnerEmit.BeginExceptionBlock(out forTry);
     return(this);
 }