1.自定义特性类的定义
自定义特性类定义时类名后缀必须为Attribute,还需要继承于Attribute类,而且必须要指定其应用范围,如下代码所示:
[AttributeUsage(AttributeTargets.Class)]//作用于类
class sealed UIAttribute:Attribute
{
public int number;
}
2.特性如何拿到
通过反射去拿到(反射一般为类、文件的读取),如下所示:
[UI(number=100)]
class Fk{
}
void Main()//这里模仿c++的main函数写法,无需注意
{
UIAttribute[] s = (UIAttribute[])t.GetCustomAttributes(typeof(UIAttribute), false);
//FKAttribute[] s = t.GetCustomAttributes(typeof(FKAttribute), false) as FKAttribute[];
foreach(var s1 in s) {
Console.WriteLine("fk"+s1.number);
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)