4
public enum Animal
{
    [Description("King of jungle")]
    Lion= 1,

    [Description("Tallest there")]
    Giraffe = 2
}

假设我有FieldInfo,我可以通过两种方式进行:

//static one on 'Attribute' class
Attribute attribute = Attribute.GetCustomAttribute(field, 
                                                   typeof(DescriptionAttribute), 
                                                   false);

没关系。

但是下面的返回[]而不是Attribute?

//instance one on 'MemberInfo` class
var attributes = field.GetCustomAttributes(typeof(DescriptionAttribute), false);

这个问题实际上与 MS 的设计选择无关。我的问题是我是否应该担心field.GetCustomAttributes返回特定属性类型的多个项目?在什么情况下会发生这种情况?

[Description("King of jungle")]
[Description("I'm a lion")]
Lion= 1

我猜永远不可能。我想我应该在编写一些反射辅助函数时处理它。

4

1 回答 1

3

为每个属性类型返回多个项目是非常有意义的。想想用基类设计的属性。或者您可以通过构造函数提供多个选项/类型的属性。

一个示例是XmlArrayItemAttribute参见 MSDN: XmlArrayItemAttribute 类

如果你想限制你的属性只使用一次,你可以将allowmultiple:=False标志添加到你的AttributeUsage.

@评论

DescriptionAttribute具有 AllowMultiple:=False (如果您不指定它,这是默认值 - 至少在 VB.NET 中)。要获得效果,请创建您自己的派生属性, 并用您设置的位置Attribute对其进行标记。AttributeUsageAllowMultiple = True

于 2013-06-11T11:36:27.007 回答