我希望这段代码有三行输出,但实际上一行都没有:
[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() );
}
}
}
我是不是漏掉了一些显而易见的东西?
安德鲁
发布于 2011-03-07 01:26:52
t.GetCustomAttributes
返回类本身声明的属性。
您需要遍历t.GetProperties()
并在各个PropertyInfo
上调用GetCustomAttributes
。
发布于 2011-03-07 01:34:52
在Main方法中尝试如下所示:
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());
}
https://stackoverflow.com/questions/5212091
复制相似问题