我可能会错误地问这个问题,但是您可以/如何在其自身的类中找到字段...例如...
public class HtmlPart {
public void Render() {
//this.GetType().GetCustomAttributes(typeof(OptionalAttribute), false);
}
}
public class HtmlForm {
private HtmlPart _FirstPart = new HtmlPart();
[Optional] //<-- how do I find that?
private HtmlPart _SecondPart = new HtmlPart();
}
或者也许我只是做错了......我怎样才能调用一个方法,然后检查应用于自身的属性?
另外,为了这个问题- 我只是好奇是否可以在不知道/访问父类的情况下找到属性信息!