Hide C# Code

Thread Starter

KCHARROIS

Joined Jun 29, 2012
311
Hello,

I made a C# windows application form program using visual studio 2013, so when I try to publish is there a way of hiding the code if someone tries to access it?

Thanks
 

Thread Starter

KCHARROIS

Joined Jun 29, 2012
311
Hi,

I'm sorry but I know next to nothing on computer programming, how do I do that or is there a tutorial you can point me too? And will this make it so that no one can access the code?

Thanks
 

sirch2

Joined Jan 21, 2013
1,037
Why hide it? Publish it as open source.

With C# and other CLR based applications EXEs can be disassembled with ildasm.exe and with the right settings it is possible to get pretty readable C# as an output.
 
Top