fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. try{
  8. try{
  9. throw new Exception();
  10. }
  11. catch{
  12. Console.WriteLine("1-вый блок");
  13. }
  14. }
  15. catch{
  16. Console.WriteLine("2-рой блок");
  17. }
  18. }
  19. }
Success #stdin #stdout 0.02s 24112KB
stdin
Standard input is empty
stdout
1-вый блок