How do I dump a complex template type in windbg?
I’ve tried
dt -n "mod!TypeA<TypeB,TypeC,TypeD<int,bool> >" 0x12345678
and several other commands but so far no luck.
Also recursive dt doesn’t work here
dt -r <depth>
because I have to compute an address to get what I’m looking for.
Thx!
Just do:
or whatever the equivalent is for you, you don’t need the
"quotes.