Given this gem of code:
鉴于这个宝石的代码:
class Program{ private static bool IsAdmin = true; static void Main(string[] args) { if (!IsAdmin) { throw new Exception(); } try { var x = 2342342; var y = 123132; } catch (Exception) { throw; } }}class Pr