Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我执行 object.dump() 时,我只能获得 1 个级别。我如何做多个级别。有没有例子。
查看该屏幕截图,简单的答案是 LINQPad 的默认转储深度 5 不足以用于该对象图。您可以通过使用数字参数调用 Dump 来增加它:
obj.Dump(6); // dump 6 levels deep
(一个更微妙的问题是 LINQPad 在列表节点和它的成员之间达到了它的图形限制,这有点难看。我已经为下一个 LINQPad 构建修复了这个问题。)