DEBSOURCES
Skip Quicknav
sources / sdb / 1.2-1 / chk / cs / throw.cs
123456789101112131415
using System; static class Program { static void Main() { try { throw new Exception(); } catch (Exception) { } } }