我在类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?
}
}