Skip to content

Instantly share code, notes, and snippets.

@jskeet
Created June 23, 2019 17:22
Show Gist options
  • Select an option

  • Save jskeet/56a1742ca2f7247c31503996c43216f9 to your computer and use it in GitHub Desktop.

Select an option

Save jskeet/56a1742ca2f7247c31503996c43216f9 to your computer and use it in GitHub Desktop.
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