Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. try
  2. {
  3.     DoSomething();
  4.     if (problem1)
  5.         throw new Exception();
  6.     DoSomethingElse();
  7.     if (problem2)
  8.         throw new Exception();
  9. }
  10. catch
  11. {
  12.     Console.WriteLine("Problem!");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement