1

型を逆アセンブルしたいとします。ただし、この型は同じアセンブリ内の他の型に依存します。ある意味では、特定の型によって定義されたクロージャを逆アセンブルできるようにしたいと考えています。

C# への逆アセンブルには興味がありません。ildasm が生成するのと同じように、プレーンな IL コードは問題ありません。

ありがとう。

編集1

It is very important for me to be able to recompile the code back again. It is because of this that I cannot use Reflector, which produces illegal C# code from the compiler perspective for all, but the most simple cases. It is very useful to learn the code and debug it, if you have the Pro version, but not to disassemble and reassemble it back.

EDIT2

BTW, the same is true for the IL code generated by the Reflector - it is not suitable for recompilation, unlike the code produced by ildasm, which is. Granted, Reflector produces much more readable code, alas - not for the compiler.

4

1 に答える 1

0

ユーザーリフレクター。アセンブリ全体を逆アセンブルします --> c#

あと数日間は無料でダウンロードできます...

(ILではなくC#であることを気にしないと仮定しています)

于 2011-02-21T09:57:56.163 に答える