如何获取属性覆盖属性?

发布于 2024-12-02 04:42:05 字数 594 浏览 2 评论 0原文

不起作用 Attribute.GetCustomAttribute

using System;

class Program
{
    static void Main()
    {
        var p = typeof(MyClass2).GetProperty("Value");
        var a = Attribute.GetCustomAttribute(p, typeof(ObsoleteAttribute), true);
        Console.WriteLine(a != null);
    }
}

public class MyClass
{
    [Obsolete]
    public virtual string Value { get; set; }
}

public class MyClass2 : MyClass
{
    public override string Value { get; set; }
}

输出:False

为什么?

Does not work Attribute.GetCustomAttribute:

using System;

class Program
{
    static void Main()
    {
        var p = typeof(MyClass2).GetProperty("Value");
        var a = Attribute.GetCustomAttribute(p, typeof(ObsoleteAttribute), true);
        Console.WriteLine(a != null);
    }
}

public class MyClass
{
    [Obsolete]
    public virtual string Value { get; set; }
}

public class MyClass2 : MyClass
{
    public override string Value { get; set; }
}

Output: False

Why?

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

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

发布评论

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

评论(1

叹倦 2024-12-09 04:42:05

如果您查看 ObsoleteAttribute 你会看到它的 AttributeUsage 设置 继承 为 false - 所以属性不会被重写成员继承。

我怀疑如果您检查它是否覆盖了基本属性并沿着继承链向上移动,您将能够以这种方式发现该属性。诚然,做这种事情有点混乱。

If you look at the docs for ObsoleteAttribute you'll see that its AttributeUsage sets Inherited to false - so the attribute isn't inherited by overriding members.

I suspect if you check that it's overriding a base property and work your way up the inheritance chain, you'll be able to discover the attribute that way. It's a bit of a mess doing this sort of thing, admittedly.

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