开发者

Windbg with SOS, How to dump a c# struct

How do I dump a struct using 开发者_StackOverflow社区windbg, is there a dumpstruct command similar to dumpobject? Or can dumpobject dump structs aswell?


Yes, you could use the !dumpvc command.
Since structs don't have an object header, the debugger doesn't know its type, so you will have to pass it the struct's MethodTable address.

>!DumpVC <METHOD_TABLE_ADDRESS> <OBJECT_ADDRESS>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜