VIsual Studio 监视窗口如何获取变量的值?

发布于 2024-10-05 12:59:32 字数 137 浏览 3 评论 0原文

假设我实例化了一个 ABC 类型的变量 x。 当我看到 x 的值时,它会显示 x.ToString() 方法中的值。

值列中显示的值还可能来自哪里?

感谢任何帮助,

谢谢,

Dattebayo

Lets say I have a variable x of type ABC instantiated.
When I see the value of x it shows me the value from the x.ToString() method.

Where else the value displayed in the value column could come from?

Any help appreciated,

Thanks,

Dattebayo

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

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

发布评论

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

评论(1

痴梦一场 2024-10-12 12:59:32

您在“监视”窗口的“值”列下看到的文本可能来自三个来源之一。

  1. 该对象的 ToString() 方法,正如您所提到的
  2. A DebuggerDisplayAttribute 上类型 ABC,告诉调试器如何将其呈现给用户。
  3. 如果您的“ABC”类用 DebuggerTypeProxy 属性修饰,您将查看代理类型具有的 .ToString 或 DebuggerDisplay 字符串。

据我所知,这是仅有的三个选择。

The text you see under the Value column in the Watch window could come from one of three sources.

  1. The object's ToString() method, as you've mentioned
  2. A DebuggerDisplayAttribute on the type ABC, which tells the debugger how to present it to the user.
  3. If your "ABC" class is decorated with a DebuggerTypeProxy attribute, you would see either the .ToString or the DebuggerDisplay string that the proxy type has.

To the best of my knowledge, those are the only three options.

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