using System;
public class Program
{
public static void Main()
try
Console.WriteLine("Try");
T();
}
catch (Exception e)
Console.WriteLine(e);
finally
Console.WriteLine("Fin");
private static void T()
InnerT();
catch (Exception ee)
throw new Exception(ee);
private static void InnerT()
var e = 0;
var c = 9494 / e;