vs2010监视窗口:打印一些成员到父节点

发布于 2024-11-26 17:22:30 字数 169 浏览 1 评论 0原文

首先,请看截图。

在此处输入图像描述

这是 vs 2010 的监视窗口

。我想要将结构/类的某些子成员移至父级的值字段以便于调试。 (在 C# 中)

可能吗?

first of all, see the screenshot please.

enter image description here

this is a watch window of vs 2010.

i want to some sub member of structure/class move up into parent's value field for easier debugging. (in C#)

is it possible?

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

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

发布评论

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

评论(4

夏日落 2024-12-03 17:22:31

您在示例中指向的区域只是对象的 ToString 表示形式(默认情况下,显示类名称)。

您可以在类中重写 ToString 并返回 Content

public override string ToString()
{
   return Content;
}

The area you point to in your example is just the ToString representation of an object (which, by default, shows the class name).

You could override ToString in your class and return Content

public override string ToString()
{
   return Content;
}
〗斷ホ乔殘χμё〖 2024-12-03 17:22:30

是的,对于你正在写的课程。

使用 DebuggerDisplay 属性:

[DebuggerDisplay("N: {Name}; A1: {Address1}; A2: {Address2}; C: {City}; S: {State}; Z: {ZipCode}; P: {Phone}; F: {Fax}")]
internal class EntityAddress
{
...
}

或者为了更简单的用法:

[DebuggerDisplay("{Content}")]
class MeanItem
{
...
}

其中每个括号内的项目都是对象的属性。使用此属性创建的字符串将完全按照您的需要显示。

MSDN 文档:使用 DebuggerDisplay 属性

Yes, for classes you're writing.

Use the DebuggerDisplay attribute:

[DebuggerDisplay("N: {Name}; A1: {Address1}; A2: {Address2}; C: {City}; S: {State}; Z: {ZipCode}; P: {Phone}; F: {Fax}")]
internal class EntityAddress
{
...
}

Or for your simpler usage:

[DebuggerDisplay("{Content}")]
class MeanItem
{
...
}

Where each of the bracketed items are properties on the object. The string created with this attribute will show exactly as you're wanting.

MSDN Documentation: Using DebuggerDisplay Attribute

傾旎 2024-12-03 17:22:30

在 MeanItem 类上方添加 DebuggerDisplay 属性。类似于:

[DebuggerDisplay("Content={Content}")]
public class MeanItem
{
...

{} 之间的值是要在调试器中显示的属性的名称。

Add a DebuggerDisplay attribute above your MeanItem class. Something like:

[DebuggerDisplay("Content={Content}")]
public class MeanItem
{
...

The value between the {} is the name of the property you want to display in the debugger.

铁轨上的流浪者 2024-12-03 17:22:30

您可以访问 MeanItem 类的源代码吗?如果是这样,您可以重写 ToString() 方法以返回 MeanItem.Content 的值 - 这应该使其显示(而不是 UOC.DicData.MeanItem)。

Do you have access to the source for the MeanItem class? If so, you can override the ToString() method to return the value of MeanItem.Content - that should make it show up (instead of UOC.DicData.MeanItem).

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