Search code examples
c#.netobfuscationdesktop-application

After applying code obfuscation exe take 1-3 minutes to run


I have applied code obfuscation through ConfuserEx tool on .NET C# project exe open immediately before applying obfuscation but after applying obfuscation it take 1-3 minutes to open and code obfuscation also reduce size of exe from 59MB to 41MB. Please suggest me new obfuscation tool or tell me proper use of ConfuserEx.


Solution

  • I can only try to answer the second part:

    File size reduction is somewhat expected, because obfuscation removes all debug information and renames all method and variable names to very short ones (i.e. A, B, C). In your case, it's pretty significant, though.