返回值是否有与 $exception 等效的内容

发布于 2024-10-14 18:25:14 字数 88 浏览 2 评论 0原文

在 Visual Studio 监视窗口中,您可以放置​​ $exception 并获取当前异常的详细信息,但是方法返回值是否有等效项?

In the Visual Studio watch window you can put $exception and get details of the current exception, but is there an equivalent for the methods return value?

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

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

发布评论

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

评论(3

温馨耳语 2024-10-21 18:25:14

在 C# 中,答案是否定的。但在 VB.NET 中,您可以在“本地”窗口中查找方法的名称,这应该就是它。作为参考,请参阅 JaredPar(来自 Microsoft)的这篇博文

In C# - and the answer is simply No. In VB.NET though, you can look for the name of the method in the Locals window, and that should be it. For reference, see this blog post by JaredPar (from Microsoft).

诠释孤独 2024-10-21 18:25:14

$eax 通常会显示大多数基本类型的返回(无论如何对于 C++ - 我不知道这是否适用于 C#)。

您可能还会发现 $err 很有用 - 它显示 GetLastError() 的当前值(“$err,hr”将尝试显示错误值的文本表示形式)。

$eax will usually show the return for most basic types (for C++ anyway - I don't know if this applies to C#).

You may also find $err useful - it shows the current value of GetLastError() ("$err,hr" will try to show a text representation of the error value).

肤浅与狂妄 2024-10-21 18:25:14

现在你可以了。

监视或即时窗口中的 $ReturnValue。另外,检查“自动”窗口。

You can now.

$ReturnValue in the Watches or Immediate windows. Also, check the Autos window.

http://blogs.msdn.com/b/visualstudioalm/archive/2013/06/27/seeing-function-return-values-in-the-debugger-in-visual-studio-2013.aspx

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