Created
June 23, 2019 17:22
-
-
Save jskeet/56a1742ca2f7247c31503996c43216f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| class Test | |
| { | |
| static void Main() | |
| { | |
| try | |
| { | |
| Console.WriteLine("In try block"); | |
| throw new Exception(); | |
| } | |
| finally | |
| { | |
| Console.WriteLine("In finally block"); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment