首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >CustomAttributes的行为与预期不符

CustomAttributes的行为与预期不符
EN

Stack Overflow用户
提问于 2011-03-07 01:25:21
回答 2查看 73关注 0票数 0

我希望这段代码有三行输出,但实际上一行都没有:

代码语言:javascript
运行
复制
[AttributeUsage( AttributeTargets.Property )]
public class FieldAttribute : System.Attribute
{
  public String FieldName
  {
    get;
    set;
  }
}

public class Host
{

  [Field]
  public String FieldOne
  {
    get;
    set;
  }

  [Field(FieldName="Foo")]
  public String FieldTwo
  {
    get;
    set;
  }

  [FieldAttribute]
  public String FieldThree
  {
    get;
    set;
  }

  public String FieldFour
  {
    get;
    set;
  }
}


class Program
{
  static void Main( string[] args )
  {
    Type t = typeof(Host);
    foreach ( Object att in t.GetCustomAttributes( typeof(FieldAttribute), true ) )
    {
      Console.WriteLine( att.ToString() );
    }
  }
}

我是不是漏掉了一些显而易见的东西?

安德鲁

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2011-03-07 01:26:52

t.GetCustomAttributes返回类本身声明的属性。

您需要遍历t.GetProperties()并在各个PropertyInfo上调用GetCustomAttributes

票数 3
EN

Stack Overflow用户

发布于 2011-03-07 01:34:52

在Main方法中尝试如下所示:

代码语言:javascript
运行
复制
Type t = typeof(Host);
foreach(var prop in t.GetProperties())
{
    var attrs = prop.GetCustomAttributes(typeof(FieldAttribute), true);
    foreach(var attr in attrs)
        Console.WriteLine("{0} - {1}", prop.Name, attr.ToString());
}
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/5212091

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档