Esempio n. 1
0
 public void TryFinally()
 {
     try
     {
         _query.ThrowException();
     }
     finally
     {
         _query.InFinally();
     }
 }
Esempio n. 2
0
 public void TryException()
 {
     try
     {
         _query.ThrowException();
     }
     catch (Exception ex)
     {
         _query.InException(ex);
         throw;
     }
 }