How to figure out method name by assembly and methoddef?

你离开我真会死。 提交于 2019-12-04 15:06:22

You can use ildasm (Microsoft Intermediate Language Disassembler). Open the assembly in ildasm, and select View -> MetaInfo -> Show! from the main menu. You will see the assembly metadata with *Def/*Ref identifiers.

Mark Lakata

Navreen has a good description of how to decode the "Watson Bucket" dump here.

http://naveensrinivasan.github.io/2010/11/17/decoding-clr20r3-.net-exception---using-mono-cecil/

He also has a script that uses Mono Cecil to automatically decode the Watson Bucket into a IL dump of where the problem occurred.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!