admin管理员组文章数量:1352138
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.
本文标签: Use WinDbg LINQ with CC objectsStack Overflow
版权声明:本文标题:Use WinDbg LINQ with CC++ objects - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743891041a2556920.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论