C#-特性的定义及使用

自定义特性(Attribute)

1.自定义特性

全继承自Attribute基类(使用前要给自定义特性赋予相关特性) 

[AttributeUsage(AtrributeTargets.Class|AttributeTargets.Method,AllowMultiple=true,Inherited=true)

//AttributeTargets.Class:允许放类上

//AllowMultiple:是否允许多个使用(同一个特性)

//Inherited:是否允许继承

class MyAttribute:Attribute

{

        public MyAtrribute(){}

        public MyAttribute(String str){}

}

2.使用特性

一般放在类、属性、方法。。上方(使用时Attribute可省略)

[My]

[My("name")]

3.查找特性名

自己定义一个类方法用于查找。

public class customtableattribute
    {
        static public string GetTableAttribute(T mode) where T:class
        { 
            Type type = typeof(T);//获取传入数据类型
            if (type.IsDefined(typeof(TableAttribute), true))//判断相应特性被使用
            {
                var attribute = type.GetCustomAttributes(typeof(TableAttribute), true);
                //获取TableAttribute特性,true代表允许继承特性的派生类
                return ((TableAttribute)attribute[0]).TableName;//返回特性名
            }
            else 
            {
                return type.Name;
            }
        
        }
    }

4.获取相应对象的特性名

string str= customtableattribute.GetTableAttribute(student);

5常用部分特性

       

 [Key]//说明这个属性是主键
 virtual public int Id { get; set; }
 [StringLength(maximumLength:50,MinimumLength =2)]//字符串长度
 public string Name { get; set; }
 [EmailAddress]//识别邮箱格式
 public string Email { get; set; }
 [Required]//属性不能为空
 public string Description { get; set; }
 [Display(Name="电话号码")]//显示字段别名
 public string PhoneNumber { get; set; }

你可能感兴趣的:(C#基础与进阶,c#,开发语言)