如何在索引器类上使用 DebuggerDisplay 属性

发布于 2024-07-30 18:01:23 字数 245 浏览 9 评论 0原文

我试图在索引器类上执行类似的操作:

    [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 技术交流群。

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

发布评论

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

评论(2

情痴 2024-08-06 18:01:23

尝试

[DebuggerDisplay("Debug: {Items[{index}]}")]

Try

[DebuggerDisplay("Debug: {Items[{index}]}")]
江挽川 2024-08-06 18:01:23

编辑:我真的对OP的问题没有信心。 这是获取集合类型以在调试器中将其成员显示为列表的方法。

将以下属性放在“数组或集合”的字段或属性上,也许它会检查 IList 的实现?

[DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]

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>?

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