最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Use WinDbg LINQ with CC++ objects - Stack Overflow

programmeradmin2浏览0评论

I have an array of structs stores as pointer + length and would like to print a deep field of each.

I can do it using .for and temporary registers:

.for (r $t0 = 0; @$t0 < @@c++(length); r $t0 = @$t0 + 1) { dx pointer[@$t0].a.b.c }

Is there some nicer way to do it using dx expressions? I know they have some LINQ capabilities, because they are described at MSDN and I can for example run:

dx Debugger.Utility.FileSystem.CurrentDirectory.Files.Select(x => x.Extension)

I am looking for an equivalent code for C/C++ objects, something like:

dx array(pointer, length).Select(x => x.a.b.c)

Having to write a small JS extension which works genetically and can be invoked with arbitrary pointer, size and lambda would also be an acceptable answer.

发布评论

评论列表(0)

  1. 暂无评论