using System;
public class Program
{
public static void Main()
try
throw new Exception("Test");
}
catch (Exception ex)
Console.WriteLine("Catch");
throw;
finally
Console.WriteLine("Finally");