What's the simplest most elegant way to utiliz

2020-02-14 10:38发布

So a little confession, I've never written an attribute class. I understand they serve the purpose of decorating classes with flags or extra functionality possibly.

Can someone give me a quick example of not just creating and applying an attribute to a class, but rather utilizing the attribute from another block of code. The only code samples I've ever seen to utilize any form of attributes was doing so with reflection, though I've always hoped there's a way of using them without reflection.

3条回答
戒情不戒烟
2楼-- · 2020-02-14 10:47

The simplest and most elegant way to use an attribute from another block of code is to use a property instead of an attribute.

See http://blogs.msdn.com/b/ericlippert/archive/2009/02/02/properties-vs-attributes.aspx for a discussion of the differences between properties and attributes.

查看更多
Bombasti
3楼-- · 2020-02-14 10:54

Attributes are always used with reflection. They are baked into the metadata of the types during compile time and the only way to read them is through reflection. Attributes are used when you want write a type and you want to associate some metadata with it which could be used by consumers of this type.

查看更多
干净又极端
4楼-- · 2020-02-14 10:55

First create your attribute

public class ImportableAttribute : Attribute
{

}

Then a class with a item that uses the Attribute

[ImportableAttribute]
public class ImportClass
{
    [ImportableAttribute]
    public string Item {get; set;}
}

Then check if that property uses that attribute. Can be done with classes to.. Of course :)

PropertyInfo property = typeof(ImportClass).GetProperty("Item");

if (property.IsDefined(typeof(ImportableAttribute),true))
{
     // do something
}

With a class:

typeof(ImportClass).IsDefined(typeof(ImportableAttribute), true);
查看更多
登录 后发表回答