How to read a method body with reflection

前端 未结 2 2064
囚心锁ツ
囚心锁ツ 2021-02-20 17:33

Is it possible to find out anything about a Method body with reflection?

How?

相关标签:
2条回答
  • 2021-02-20 18:17

    Talking of Mono.Cecil, it will give you access to the method body in a way that will look very familiar if you have ever peeked into a .NET assembly with ILDASM.

    0 讨论(0)
  • 2021-02-20 18:35

    You can use MethodInfo.GetMethodBody.

    That provides you access to anything you want... if you're happy to work through the IL etc yourself.

    It's possible that the Mono Cecil library will provide more help - I haven't used it myself.

    0 讨论(0)
提交回复
热议问题