这篇文章介绍了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)的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持得得之家。
沃梦达教程
本文标题为:C#中属性(Attribute)的用法


基础教程推荐
猜你喜欢
- 使用c#从分隔文本文件中插入SQL Server表中的批量数据 2023-11-24
- C# – NetUseAdd来自Windows Server 2008和IIS7上的NetApi32.dll 2023-09-20
- C#中类与接口的区别讲解 2023-06-04
- Unity shader实现多光源漫反射以及阴影 2023-03-04
- c#中利用Tu Share获取股票交易信息 2023-03-03
- c#读取XML多级子节点 2022-11-05
- C# Winform实现石头剪刀布游戏 2023-01-11
- C#集合查询Linq在项目中使用详解 2023-06-09
- C#通过GET/POST方式发送Http请求 2023-04-28
- 京东联盟C#接口测试示例分享 2022-12-02