WINDBG,如何查看数组的内容? [英] WINDBG, how to view the contents of an array?

查看:149
本文介绍了WINDBG,如何查看数组的内容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用WINDBG分析一个内存使用率过高的程序的转储文件.

I'm using WINDBG to analyze a dump file for a program that exhibits a bit too high memory usage.

涉及的对象之一是持有一个对象数组,引用许多我想查看的对象,以试图找出分配它们的原因.

One of the objects involved is holding an object array, referencing a lot of objects I'd like to look at, to try to find out why they were allocated.

这是我尝试过的:

首先,我的ServiceContainer对象集合:

First, my collection of ServiceContainer objects:

0:000> !do 05633014 
Name: System.Collections.Generic.List`1[[LVK.IoC.ServiceContainer, LVK.Core]]
MethodTable: 08b3c7fc
EEClass: 6f70ca78
Size: 24(0x18) bytes
 (C:\Windows\assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\mscorlib.dll)
Fields:
      MT    Field   Offset                 Type VT     Attr    Value Name
6f924324  40009d8        4      System.Object[]  0 instance 1da226ec _items
6f952da0  40009d9        c         System.Int32  1 instance     5356 _size
6f952da0  40009da       10         System.Int32  1 instance     5538 _version
6f950770  40009db        8        System.Object  0 instance 00000000 _syncRoot
6f924324  40009dc        0      System.Object[]  0   shared   static _emptyArray
    >> Domain:Value dynamic statics NYI
 002b2a28:NotInit  <<

_items数组是我要查看的数组,因此我发出了以下命令:

The _items array there is the one I want to look at, so I issued this command:

0:000> !do 1da226ec

产生了:

Name: System.Object[]
MethodTable: 6f924324
EEClass: 6f70da64
Size: 32784(0x8010) bytes
Array: Rank 1, Number of elements 8192, Type CLASS
Element Type: LVK.IoC.ServiceContainer
Fields:
None

在网络上,我发现

Looking at the web, I've found indications that there was a -v option I could use on something to produce the array values, but this doesn't seem to work.

我如何看待这个数组的元素?

How do I look at the elements of this array?

推荐答案

您正在寻找

!da 1da226ec

转储数组对象.

这篇关于WINDBG,如何查看数组的内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆