views:

56

answers:

2

Possible Duplicates:
What is the best .NET obfuscator on the market?
Best .NET obfuscation tools/strategy

Hi there,

I'm ending my development of a small business application, using NET 4.0.

I would like to know which tool are you using to prevent your code to be decompiled/stolen.

I know that exists a few tools in the market, but I would like to know the best ones, keeping in mind that I'm using reflection to access properties and some methods

Thanks

A: 

You can use Visual Studio's Dotfuscator.

vash47
The one that comes with VS is hardly industrial strength; besides which if he has reflection code those parts couldn't be obfuscated.
Steve Ellinger
Which does not really belong to VS, it's ad-ware.
Henk Holterman
+1  A: 

here is no such possibility. Dotfuscated and packed application can be unpacked and undotfuscated by professional, and it can be reversed. Any program can be hacked, any .net program can be opened, because for that normal work needed il code, which can be easily opened.

(Translated from russian by google)

Andrew Dementiev
I agree with you, that any program can be hacked, but there a few things that you can make that would eliminate 70% of hackers
muek