using System; class Test { public static void Main(String[] args) { Console.WriteLine("I'm outside the first try."); try { throw new Exception("Can you catch me?"); try { } catch { } } catch { } } }