Click here to Skip to main content
15,917,565 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello guys, I was just wondering if it is possible to decompile and obfuscate application made with perhaps SharpDevelop (C#). I know this is possible with Visual Basic/Studio code. I am really confused, thanks for you help! :)

What I have tried:

Research.
Posted
Updated 14-Aug-17 7:39am
v2

1 solution

All .NET code compiles down to MSIL (Microsoft Intermediate Language), NOT processor specific code like a traditional .EXE.

It doesn't matter what tool was used to create it nor what language it was written in.

You can decompile the .NET executable back to some semblance of the original source no matter what language it was written in.

Obfuscators just make the resulting decompiled code harder to read and understand. They don't normally prevent the decompile operation.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900