国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

特性驗證實體

2019-11-17 03:06:49
字體:
來源:轉載
供稿:網友

特性驗證實體

特性驗證實體類using System;using System.Reflection;namespace ValidateAgeAttr{    class ValidateAgeAttribute : Attribute    {        public ValidateAgeAttribute()        {        }        public ValidateAgeAttribute(int maxAge, string validateResult)        {            MaxAge = maxAge;            ValidateResult = validateResult;        }        /// <summary>        /// 允許的最大年齡        /// </summary>        public int MaxAge { get; set; }        /// <summary>        /// 驗證結果        /// </summary>        public string ValidateResult { get; set; }        public void Validate(int age)        {            if (age > MaxAge)            {                ValidateResult = string.Format("無法通過驗證:age({0})>MaxAge({1})", age, MaxAge);            }            else if (age <= MaxAge)            {                ValidateResult = string.Format("驗證通過:age({0})<=MaxAge({1})", age, MaxAge);            }        }    }    class Person    {        public string Name { get; set; }        //[ValidateAge(MaxAge = 40)]        [ValidateAge(50, "")]        public int Age { get; set; }    }    class PRogram    {        static void Main()        {            var person = new Person { Name = "TT", Age = 20 };            Type type = person.GetType();            PropertyInfo propertyInfo = type.GetProperty("Age");            var validateAgeAttribute = (ValidateAgeAttribute)Attribute.GetCustomAttribute(propertyInfo, typeof(ValidateAgeAttribute));            Console.WriteLine("允許的最大年齡:" + validateAgeAttribute.MaxAge);            validateAgeAttribute.Validate(person.Age);            Console.WriteLine(validateAgeAttribute.ValidateResult);            Console.ReadKey();        }    }}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 娄烦县| 深州市| 金川县| 榆社县| 长子县| 松潘县| 宜黄县| 北川| 宁强县| 阿拉善盟| 乡宁县| 睢宁县| 盘锦市| 宾川县| 登封市| 遂平县| 平泉县| 宣恩县| 凤台县| 苗栗市| 荣成市| 徐汇区| 禄丰县| 齐河县| 鄂伦春自治旗| 门头沟区| 从江县| 敦煌市| 山西省| 连州市| 江达县| 上林县| 成武县| 宁波市| 化德县| 绥阳县| 吉木萨尔县| 青阳县| 敦化市| 青冈县| 普陀区|