Transform part of codes into native images

  • Thread starter Thread starter Dotnetjunky
  • Start date Start date
D

Dotnetjunky

Hello,

When compiling our programs, how can we make certain methods compiled
straight into native codes so that they cannot be decompiled ?

Thanks in advance.
 
With decompilers (use google). Also, don't underestimate the power of
dissassembly.

It really depends on what your goal is. "Preventing decompilation" isn't
much of a goal. The goal is most likely "preventing cracking of this
program", "preventing theft of special algorithms", etc. If you define what
you're really worried about it goes a long way.

-mike
MVP
 
Back
Top