c#高级编程-特性篇

c#高级编程-特性篇,第1张

特性

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);
        }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1330312.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-12
下一篇 2022-06-12

发表评论

登录后才能评论

评论列表(0条)

保存