Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 windbg 中转储复杂的模板类型?
我试过了
dt -n "mod!TypeA<TypeB,TypeC,TypeD<int,bool> >" 0x12345678
和其他几个命令,但到目前为止还没有运气。
递归 dt 在这里也不起作用
dt -r <depth>
因为我必须计算一个地址才能得到我要找的东西。
谢谢!
做就是了:
dt -n myDLL! varName
或任何等价的东西,你不需要"引号。
"