Quote:
Originally Posted by .Summer
why ,84%?
|
Because it is the natural number following 83 and preceding 85. Have any other incompetent questions?
Quote:
Originally Posted by .Arco
You can use a decompiler.
I use red gate when decompiling.
But I'm pretty much 99.84% sure that TQ obfuscates their exe files so they can't be decompiled.
|
This may not be the reason, but AFAIK, Red Gate's .NET Reflector can only decompile an intermediate CIL code which is what the .NET compiler converts all working code into. The standard conventions used in the intermediate byte code allows the Red Gate's .NET Reflector to effectively decompile .NET EXE's. At runtime, the CLR's JIT compiler reads the bytecode and converts it into machine code. Through the use of an AOT compiler, or by simply not using a language that gets compiled to an intermediate bytecode, the piece of software would now be machine code, and effectively much more difficult to decompile/reverse engineer. This is also a reason why tools for decompiling .NET languages and Java are more easily found than those for C++.