Guest User

Untitled

a guest
Jul 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3.     try
  4.     {
  5.         Console.WriteLine("Executing...");
  6.         return;
  7.     }
  8.     catch
  9.     {
  10.         Console.WriteLine("Exception found...");
  11.     }
  12.     finally
  13.     {
  14.         Console.WriteLine("Finishing up...");
  15.     }
  16. }
Add Comment
Please, Sign In to add comment