千家信息网

C#中的Attribute怎么用

发表于:2025-01-17 作者:千家信息网编辑
千家信息网最后更新 2025年01月17日,这篇文章主要介绍"C#中的Attribute怎么用",在日常操作中,相信很多人在C#中的Attribute怎么用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"C#中的A
千家信息网最后更新 2025年01月17日C#中的Attribute怎么用

这篇文章主要介绍"C#中的Attribute怎么用",在日常操作中,相信很多人在C#中的Attribute怎么用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"C#中的Attribute怎么用"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

一、创建属性

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Constructor, AllowMultiple = true, Inherited = true)]//AttributeTargets:属性应用到的目标类型。AllowMultiple:是否允许一个元素应用多个此属性。Inherited:属性能否有派生类继承。public class CodeStatusAttribute : Attribute{    private string status;    public CodeStatusAttribute(string status)//构造函数为位置参数    {        this.status = status;    }    public string Tester { set; get; }//属性和公共字段为命名参数    public string Coder { set; get; }        public override string ToString()    {        return status;    }}

二、应用属性

//1、使用单个属性[CodeStatus("a版")]public class Tringe{ }//2、使用多个属性[CodeStatus("b版", Coder = "小李")][CodeStatus("b版", Coder = "小王")]//也可以[CodeStatus("aa",Coder="小李"),CodeStatus("aa",Coder="小王")]public class Square{ }//3、使用位置参数和命名参数//type表示此属性与什么元素关联,可能有:assembly,field,method,param,property,return,moudule,event,type等。。[type: CodeStatus("最终版", Coder = "小李", Tester = "老李")]public class Circle{    [CodeStatus("最终版", Coder = "小李", Tester = "老李")]    public Circle()    {    }}

三、反射属性

//1、获取类上的属性。Type t = typeof(Circle);Attribute[] attArr = Attribute.GetCustomAttributes(t, typeof(CodeStatusAttribute));//或object[] attArr1 = t.GetCustomAttributes(typeof(CodeStatusAttribute), true);//2、获取成员上属性Attribute[] attArr3 = t.GetConstructors()[0].GetCustomAttributes().ToArray();//构造函数,获取字段GetField("..")//3、遍历foreach (Attribute attr in attArr3){    CodeStatusAttribute item = (CodeStatusAttribute)attr;    Console.Write(item.ToString() + item.Coder + item.Tester);}

四、Net内置属性

[Condeitonal] //条件控制[Obsolete] //废弃属性[Serializable]//可序列化属性[AssemblyDelaySign] //程序集延迟签名

到此,关于"C#中的Attribute怎么用"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

0