02-21-2018, 08:19 PM
For those writing tools in C# .NET who don't know that they can be easily reverse engineered with a process called reflection, run your output executable through this:
It turns the source code into a jumble of random token names to make it difficult for the not-so-determined engineer to map out the flow of your application to protect your work.
Another useful tool is ILMergeĀ
Which allows you to package all the .NET libraries (DLLs) into the executable to tidy up your distribution a bit.
Regards
[To see links please register here]
It turns the source code into a jumble of random token names to make it difficult for the not-so-determined engineer to map out the flow of your application to protect your work.
Another useful tool is ILMergeĀ
[To see links please register here]
Which allows you to package all the .NET libraries (DLLs) into the executable to tidy up your distribution a bit.
Regards