Does Dotfuscator really work?

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi,

Does Dotfuscator really work? I mean is there no way to decompile your
program when it's done? Or does it just make it more difficult to work with
the decompiled code?

Also, is there any kind of performance penalty?

TIA
 
"Does Dotfuscator really work? I mean is there no way to decompile your
program when it's done? Or does it just make it more difficult to work
with
the decompiled code?"

It just makes it more difficult to work with the decompiled code.

"Also, is there any kind of performance penalty?"

It depends on the configuration put into using Dotfuscator.
To get the best performance out of it, is to apply Control Flow
obfuscation on methods that contain plenty of if, while, and for
constructs and exclude any methods that don't have as much.
Using removal also makes leaves out any code that isn't used making the
app more compact.
 
Back
Top