查看内存中变量的内容和值

时间:2017-08-17 05:03:24

标签: c# debugging debuggervisualizer clrmd

我正在尝试创建一个调试工具,它将附加到一个进程,然后查看堆栈和堆的内容。

到目前为止,我正在使用CLRmd附加到进程,然后获取堆栈和堆内变量类型的列表,但仍然无法获取元素的值。

我有什么方法可以获得价值观吗? 视觉工作室调试器怎么能做到这一点?

语言不是这里的约束。

1 个答案:

答案 0 :(得分:0)

我使用ClrMd NuGet包(版本0.8.31.1)创建了以下程序,以显示对象的内容,即字段名称和值:

using System;
using System.Diagnostics;
using System.Linq;
using Microsoft.Diagnostics.Runtime;

namespace ClrMdTest
{
    class Program
    {
        static void Main(string[] args)
        {    
            var live = DataTarget.AttachToProcess(
                Process.GetProcessesByName("clrmdexampletarget")[0].Id,
                1000, AttachFlag.Passive);
            var liveClrVersion = live.ClrVersions[0];
            var liveRuntime = liveClrVersion.CreateRuntime();
            var addresses = liveRuntime.Heap.EnumerateObjectAddresses();

            // The where clause does some consistency check for live debugging
            // when the GC might cause the heap to be in an inconsistent state.
            var singleObjects = from obj in addresses
                let type = liveRuntime.Heap.GetObjectType(obj)
                where
                    type != null && !type.IsFree && !string.IsNullOrEmpty(type.Name) &&
                    type.Name.StartsWith("SomeInterestingNamespace")
                select new { Address = obj, Type = type};

            foreach (var singleObject in singleObjects)
            {
                foreach (var field in singleObject.Type.Fields)
                {
                    Console.WriteLine(field.Name + " =");
                    Console.WriteLine("   " + field.GetValue(singleObject.Address));
                }
            }

            Console.ReadLine();
        }
    }
}