如何从类中获取对象实例的自定义属性

时间:2016-11-18 08:51:48

标签: c# custom-attributes

我在类CustomAtt的字段中创建了一个自定义属性Test

public class Test
{
    [CustomAtt("test")]
    private MyOtherClass obj;
}

现在,我想从自定义属性中检索不在类Test内但在MyOtherClass中的值,如:

public class MyOtherClass
{
    MyOtherClass ()
    {
        //how do I get here the value ("test") from the custom attribute
        //CustomAtt for this class instance?
    }
}

0 个答案:

没有答案