I’ve executed the windbg command
!dumpheap -stat to get a dumpheap.
Now I want to get more information about a class type content.
How can I see more details for the class type?
0:007> !do 00000000062782d0
Free Object
Size: 566112(0x8a360) bytes
0:007> !do 000007ff00c88fc8
<Note: this object has an invalid CLASS field>
Invalid object
This does all not work to get more infos.
Is it possible to get IL Code also?
In .Net class is identified by Method Table, which lives in assembly metadata. Use
!dumpmtto dump method table. E.g.: