我正在尝试提取属性。属性是自定义属性。
但是有些我无法使用object.id
的东西。
例如,我的注释代码adpter.id
无效,即使您看到我已将该对象转换为它的类型。
这是属性的代码:
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
public class Adapter : Attribute
{
// This class implements the Adapter Attribite
readonly int id;
readonly string Title;
public string Comment { get; set; }
private string[] Relation;
public Adapter(int id, string Title,string []relations)
{
this.id = id;
this.Title = Title;
this.Relation = relations;
}
}