bprg

Results 3 issues of bprg

**IL** ``` .method private hidebysig static bool MyMethod ( class [mscorlib]System.Reflection.MethodBase method ) cil managed { // Method begins at RVA 0xf9e8 // Code size 44 (0x2c) .maxstack 2 .locals...

Decompiler
C#
Won't Fix
Enhancement

Please look the screencast. [screncast.zip](https://github.com/yck1509/ConfuserEx/files/1060759/screncast.zip)

I obfuscated the following code return ArgumentException. ``` try { throw new ArgumentException("Error"); } catch (ApplicationException e) { Console.WriteLine("First handler"); } catch (ArgumentException e) { Console.WriteLine("Second handler"); } ``` ```...