gpt4 book ai didi

c# - 应用程序因 stackoverflow 而崩溃

转载 作者:行者123 更新时间:2023-11-30 12:33:47 27 4
gpt4 key购买 nike

这个错误让我非常难受。我无法在 Application_OnError 捕获此错误。我能得到的唯一消息是事件查看器日志。

Application: w3wp.exe
Framework Version: v4.0.30319
Description: The process was terminated due to stack overflow.



Faulting application w3wp.exe, version 7.0.6001.18000, time stamp 0x47919413, faulting module nlssorting.dll, version 4.0.30319.235, time stamp 0x4da3fc88, exception code 0xc00000fd, fault offset 0x000020d4, process id 0x%9, application start time 0x%10.

我有一个非常大的应用程序,由于上述错误,我无法判断 stackoverflow 的确切原因在哪里。你能帮我解决这个问题吗?

最佳答案

您可能会在 Application_End 中获得更多帮助。从这里,您可以使用类似这样的方法捕获关闭堆栈...

HttpRuntime runtime = (HttpRuntime)typeof(System.Web.HttpRuntime).InvokeMember("_theRuntime", BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.GetField, null, null, null);

(string)runtime.GetType().InvokeMember("_shutDownStack", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.GetField, null, runtime, null);

(string)runtime.GetType().InvokeMember("_shutDownMessage", BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.GetField, null, runtime, null);

关于c# - 应用程序因 stackoverflow 而崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8499791/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com