fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. //Demo
  8. try
  9. {
  10. throw new CustomException_A();
  11. }
  12. catch(Exception e)
  13. {
  14. switch(e)
  15. {
  16. case CustomException_A e_a:
  17. Console.WriteLine("Flow_A");
  18. break;
  19. case CustomException_B e_b:
  20. Console.WriteLine("Flow_B");
  21. break;
  22.  
  23. default:
  24. Console.WriteLine("Flow_Default");
  25. break;
  26. }
  27. }
  28.  
  29.  
  30. // your code goes here
  31. }
  32. }
  33. public class CustomException_A : Exception
  34. {
  35. public CustomException_A() : base() {}
  36. }
  37. public class CustomException_B : Exception
  38. {
  39. public CustomException_B() : base() {}
  40. }
Success #stdin #stdout 0.05s 31172KB
stdin
Standard input is empty
stdout
Flow_A