Question how to prevent exe files from decompiling?

bdsafa

New member
Joined
Jun 1, 2009
Messages
1
Programming Experience
3-5
hello everyone.

i have question and really need to know it. how to prevent VB.net program from de-compiling? i wrote a program for 2 years and now it's easily can be de-compiled. please help....:(
 
Last edited:
There's no simple, or at least inexpensive, way to prevent a .NET app from being decompiled. Generally speaking people don't worry about decompilation and, if they want to protect their source code, they obfuscate it so that the decompiled code is no use to anyone because its purpose can't be understood. Java is in a similar position and there are lots of obfuscators available. .NET has fewer options, but there are some. Dotfuscator CE comes with VS (Pro and above I think). There's a commercial version that's more secure but also costs quite a bit. There are also some other free options if you'd care to search.
 
coldfire417 said:
Theres a free way of doing this with SmartAssembly.
SmartAssembly is a 20-day evaluation, then it get pricey ;)
 
Back
Top