Possible Duplicate:
Encrypting source code when publishing (C#)
How can I encode/encrypt c sharp code ?
|
|
How can I encode/encrypt c sharp code ? |
||||||||||||||||||
|
closed as exact duplicate by Jon B, James Black, Brandon, dtb, AlbertoPL Oct 8 at 17:20 |
|
|
Assuming that you want to obfuscate your code, I would suggest you visiting the following links http://stackoverflow.com/questions/1276237/preventing-decompilation-of-c-application http://stackoverflow.com/questions/71195/should-you-obfuscate-a-commercial-net-application http://stackoverflow.com/questions/59893/best-method-to-obfuscate-or-secure-net-assemblies http://stackoverflow.com/questions/584828/protecting-my-code-from-reverse-engineering Hope it helps |
||
|
|
|
|
To obfuscate look at http://stackoverflow.com/questions/59893/best-method-to-obfuscate-or-secure-net-assemblies But, if someone wants to look at your code there isn't much you can do about it, as the computer will need to be able to read it, so, if it can be executed then it can be decompiled. It is just a matter of how difficult do you want the decompilation to be. |
||
|
|
|
|
To obfuscate the compiled assembly and make it harder for your users to examine your code, you can use an obfuscator such as SmartAssembly, Dotfuscator, or Xenocode. To encrypt the source code so that people who somehow get to your development computer can't read your source, use any encryption program, such as NTFS Encryption. |
||