CodeDOM:将 DebuggerStepThroughAttribute 添加到属性

发布于 2024-08-25 13:39:26 字数 151 浏览 2 评论 0 原文

我知道如何将 DebuggerStepThroughAttribute 添加到方法或构造函数,通常将其添加到代码成员的 CustomAttributes 集合中。但我没有找到对 C# 属性的 setter 和 getter 执行此操作的方法,因为它们都不提供您添加属性的集合。有人知道吗?

I know how to add a DebuggerStepThroughAttribute to a method or a constructor, usually you add it to the CustomAttributes collection of a code member. But I don't see a way to do this for the setter and getter of a C# property, because neither of them provides this collection where you add the attributes. Does anyone have a clue?

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

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

发布评论

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

评论(1

触ぅ动初心 2024-09-01 13:39:26

DebuggerStepThroughAttribute 针对方法、构造函数、结构和类。它不能应用于字段或属性。但是,您可以使用 DebuggerNonUserCodeAttribute 来实现类似的目标。

也就是说,属性可以应用于 CodeMemberProperty文档声明它继承CustomAttributes 来自 CodeTypeMember 基类。

The DebuggerStepThroughAttribute is targetted at methods, constructors, structs and classes. It cannot be applied to fields or properties. You can, however, use DebuggerNonUserCodeAttribute to achieve a similar aim.

That said, attributes can be applied to CodeMemberProperty. The documentation states that it inherits CustomAttributes from the CodeTypeMember base class.

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