vs2010监视窗口:打印一些成员到父节点
首先,请看截图。
这是 vs 2010 的监视窗口
。我想要将结构/类的某些子成员移至父级的值字段以便于调试。 (在 C# 中)
可能吗?
first of all, see the screenshot please.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您在示例中指向的区域只是对象的
ToString
表示形式(默认情况下,显示类名称)。您可以在类中重写 ToString 并返回 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
是的,对于你正在写的课程。
使用 DebuggerDisplay 属性:
或者为了更简单的用法:
其中每个括号内的项目都是对象的属性。使用此属性创建的字符串将完全按照您的需要显示。
MSDN 文档:使用 DebuggerDisplay 属性
Yes, for classes you're writing.
Use the
DebuggerDisplay
attribute:Or for your simpler usage:
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
在 MeanItem 类上方添加 DebuggerDisplay 属性。类似于:
{} 之间的值是要在调试器中显示的属性的名称。
Add a DebuggerDisplay attribute above your MeanItem class. Something like:
The value between the {} is the name of the property you want to display in the debugger.
您可以访问 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).