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)的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持0133技术站。

以上就是C#中属性(Attribute)的用法的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » 其他教程