如何在索引器类上使用 DebuggerDisplay 属性
我试图在索引器类上执行类似的操作:
[DebuggerDisplay("Debug: {_Items[index]}")]
public override string this[byte index]
但是,当调试器评估字符串时,值字段中的消息是“索引在当前上下文中不存在”。
有没有某种方法可以使用 DebuggerDisplay 属性来控制索引器类中单个元素的显示?
I am trying to do something like this on an indexer class:
[DebuggerDisplay("Debug: {_Items[index]}")]
public override string this[byte index]
However, when the debugger evaluates the string, the message in the value field is "index does not exist in the current context".
Is there some way to use the DebuggerDisplay attribute to control the display of a single element within an indexer class??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
Try
编辑:我真的对OP的问题没有信心。 这是获取集合类型以在调试器中将其成员显示为列表的方法。
将以下属性放在“数组或集合”的字段或属性上,也许它会检查
IList
的实现?Edit: I really am not confident of the OP's question. This is how you can get a collection type to show its members as a list in the debugger.
Place the following attribute on a field or property that is "an array or collection", perhaps it checks for an implementation of
IList<T>
?