SOS Command: !DumpMD <MethodDesc address>
This command lists information about a MethodDesc. You can use !IP2MD to turn a code address in a managed function into a MethodDesc:
!DumpMD 00933008 Method Name: FindProduct.Program.AppendProduct(System.Collections.Generic.List`1<FindProduct.Product>) Class: 00931300 MethodTable: 00933024 mdToken: 06000002 Module: 00932c5c IsJitted: yes CodeAddr: 00ff00e8
If IsJitted is “yes,” you can run !U on the CodeAddr pointer to see a disassembly of the JITTED code. You can also call !DumpClass, !DumpMT, !DumpModule on the Class, MethodTable and Module fields above.