code security?

  • Thread starter Thread starter Lore Leunoeg
  • Start date Start date
L

Lore Leunoeg

Hello

Is there a way to get code really secure, so that it can't be disassembled?
I don't mean dotfuscator, because I think it's not secure.

Thank you
Sincerely
Lore
 
Lore said:
Hello

Is there a way to get code really secure, so that it can't be
disassembled? I don't mean dotfuscator, because I think it's not
secure.

Yes. Use .NET remoting. When the code only runs on your machine your
customers cannot decompile it. Of course, don't do the dumb thing that
most examples of .NET remoting do - that is distribute the original
library with the client app so that the client has the metadata. Use
soapsuds instead.

Richard
 
Back
Top