错误:无法计算表达式,因为代码已优化或本机框架位于调用堆栈顶部
无法计算表达式,因为代码已优化或本机框架位于调用堆栈顶部
我在 C# 中遇到以下异常:当从 Web 应用程序中的流读取器调用 ReadToEnd() 方法时,
。如果我在控制台应用程序中复制并粘贴相同的代码。有用。
任何想法
干杯
I am getting the following exception in c#: Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack
When calling ReadToEnd() method from a streamreader in a web application.
If i copy and paste the same code in a console application. It works.
Any ideas
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不是一个例外,只是调试器发出的警告,表明它无法为您提供所需的信息。就会发生这种情况。请确保您已正确设置断点,并且没有使用“调试 + 全部中断”以非托管代码结束。
That is not an exception, merely a warning from the debugger that it has trouble giving you the information you asked for. That happens. Do make sure you have set the breakpoint correctly and haven't ended up in non-managed code with Debug + Break All.
也许您正在 Web 方法(服务)中执行此代码,例如
页面方法。
当流完成读取时,它将缓冲区发送到客户端..但是没有客户端将缓冲区发送给..然后发生此异常。
当我尝试使用网络方法下载文件时,它发生在我的代码中。
maybe you are executing this code in a web method (service) like
PageMethod.
when the stream finish reading, it send the buffer to the client .. but there is no client to send the buffer to .. then this exception happen.
it happens in my code when i trying to download file using web method.