如何增加 LINQPad 中图形的限制?

发布于 2024-09-03 06:42:30 字数 288 浏览 8 评论 0原文

LINQPad 中显示的结果是有限的。如果对象嵌套较深,则会显示红线。 我想增加限制,这样我就可以看到更多嵌套对象。

你知道该怎么做吗? (我在选项中没有找到。)

背景不在原始问题中: LINQPad 将显示 如果总输出超过某个值,则会出现“图形限制”错误消息 阈值(总页面大小)。 建议的答案是解决如何限制单独倾倒对象的深度 图表,这可能有助于避免达到总大小限制。然而,它并没有增加“图表的限制”,这正是OP所要求的。

Results shown in LINQPad are limited. If objects are deep nested, a red line is shown.
I would like to increase a limit, so I can see more nested objects.

Do you know how to do it? (I have not find that in options.)

Background not in the original question: LINQPad will display of
"limit of graph" error message if the total output exceeds a certain
threshold (total page size).
The suggested answers are addressing how to limit the depth of the individually dumped object
graphs, which may help avoiding hitting the total size limit. It does not, however, increase the "limit of graph", which is what OP is asking.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤城病女 2024-09-10 06:42:30

为了充实@lioil的答案:

Dump的重载包括:

T Dump<T>(this T o); //Dump the object and return it (for fluency)
T Dump<T>(this T o, string description); //Dump with label
T Dump<T>(this T o, int maximumDepth); //Dump with given maximum depth
T Dump<T>(this T o, string description, int maximumDepth); //Combine the above

您正在寻找第三个或第四个选项。

To flesh out @lioil's answer:

Dump's overloads include:

T Dump<T>(this T o); //Dump the object and return it (for fluency)
T Dump<T>(this T o, string description); //Dump with label
T Dump<T>(this T o, int maximumDepth); //Dump with given maximum depth
T Dump<T>(this T o, string description, int maximumDepth); //Combine the above

You're looking for the third or fourth option.

审判长 2024-09-10 06:42:30

尝试 Dump() 方法的另一个重载。

Try another overload of Dump() method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文