编程语言
首页 > 编程语言> > c# – 从基类访问应用于派生类中的方法的属性

c# – 从基类访问应用于派生类中的方法的属性

作者:互联网

所以我有一个案例,我希望能够将属性应用于派生类中的(虚拟)方法,但我希望能够提供一个在我的基类中使用这些属性的默认实现.

我这样做的最初计划是覆盖派生类中的方法,然后调用基本实现,此时应用所需的属性,如下所示:

public class Base {

    [MyAttribute("A Base Value For Testing")]
    public virtual void GetAttributes() {
        MethodInfo method = typeof(Base).GetMethod("GetAttributes");
        Attribute[] attributes = Attribute.GetCustomAttributes(method, typeof(MyAttribute), true);

        foreach (Attibute attr in attributes) {
            MyAttribute ma = attr as MyAttribute;
            Console.Writeline(ma.Value);
        }
    }
}

public class Derived : Base {

    [MyAttribute("A Value")]
    [MyAttribute("Another Value")]
    public override void GetAttributes() {
        return base.GetAttributes();
    }
}

这只打印“测试的基本值”,而不是我真正想要的其他值.

有没有人建议如何修改它以获得所需的行为?

解决方法:

您明确反映了Base类的GetAttributes方法.

更改实现以使用GetType().如:

public virtual void GetAttributes() {
    MethodInfo method = GetType().GetMethod("GetAttributes");
    // ...

标签:c,attributes,custom-attributes
来源: https://codeday.me/bug/20190527/1161160.html