System.StackOverflowException 未处理 - C#、.NET

发布于 2024-11-05 15:34:22 字数 101 浏览 1 评论 0原文

如何修复它。 看起来这个页面是专门针对这种错误的。

在此处输入图像描述

How to fix it.
It look like this page is dedicated to that kind of error.

enter image description here

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

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

发布评论

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

评论(2

芸娘子的小脾气 2024-11-12 15:34:22

您的函数将永远调用自身。
你需要让它停止调用自己。

在这种情况下,您需要将其Invoke到UI线程,而不是简单地再次调用自身:

Invoke(new Action(UpdateAdvert));

Your function is calling itself forever.
You need to make it stop calling itself.

In this case, you need to Invoke it to the UI thread instead of simply calling itself again:

Invoke(new Action(UpdateAdvert));
时光与爱终年不遇 2024-11-12 15:34:22

看来 InvokeRequiredtrue。这会导致无限递归。没有什么可以将其更改为 false。也许调用可以修复它?

It appears that InvokeRequired is true. This causes unbounded recursion. There's nothing that will change it to false. Perhaps invoking would fix it?

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