Dumping the contents of a dictionary object using Windbg and SOS.dll 在这个博客上,这个命令:
0:009> !dumpvc 000007fe984b57d8 000000018003ead8
他想要查看数组中的元素, 元素类型是
System.Collections.Generic.Dictionary`2+Entry[[System.Guid, mscorlib],[Microsoft.TeamFoundation.Framework.Server.TeamFoundationPerformanceCounters, Microsoft.TeamFoundation.Framework.Server]]
从我的角度来看,我认为!dumpvc用于探索值类型,类型'Dictionary`2 + Entry ...'不是值类型。
情况是什么原因?
我试过这个:转储一个字节数组。
0:000> !da -length 3 -nofields 00000001ba9f63b0
-nofields has no effect unless -details is specified
Name: System.Byte[]
MethodTable: 000007fee3a20b50
EEClass: 000007fee35a2330
Size: 148(0x94) bytes
Array: Rank 1, Number of elements 124, Type Byte
Element Methodtable: 000007fee3a1c168
[0] 00000001ba9f63c0
[1] 00000001ba9f63c1
[2] 00000001ba9f63c2
0:000> !do 00000001ba9f63c0
<Note: this object has an invalid CLASS field>
0:000> !dumpvc 000007fee3a1c168 00000001ba9f63c0
Name: System.Byte
MethodTable: 000007fee3a1c168
EEClass: 000007fee35a03b8
Size: 24(0x18) bytes
File: C:\Windows\Microsoft.Net\assembly\....\mscorlib.dll
Fields:
MT Field Offset Type VT Attr Value Name
000007fee3a1c168 4000276 0 System.Byte 1 instance 62 m_value
它显示了我预期的结果。 可以!dumpvc每次调试时都会在任何地方探索数组元素吗?
答案 0 :(得分:2)
Byte []是一种引用类型,您可以使用!do
转储它
字节是值类型,如果有很多字节,则使用!da
转储它。
这同样适用于字典:
Dictionary`2是一个引用类型,并使用!do
转储
条目类型为Dictionary`2 + Entry,它似乎是一个包含指向键和值的指针的结构(类似KeyValuePair)。结构是由!da
转储的值类型,您可以在其上使用!dumpvc
。