using System; using System.Collections.Generic; class Program { static void Trigger () { List inners = new List (); inners.Add ("Failed to run update to completion"); throw new Exception (); } static int Main (string[] args) { try { Trigger (); } catch (TypeLoadException e) { return 1; } catch (Exception e) { return 0; } return 1; } }