国产探花免费观看_亚洲丰满少妇自慰呻吟_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();        }    }}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 密山市| 武邑县| 深圳市| 蚌埠市| 宁海县| 孟连| 汤阴县| 高尔夫| 乐清市| 广州市| 霞浦县| 微山县| 公安县| 余姚市| 视频| 正安县| 盐山县| 大埔区| 探索| 璧山县| 响水县| 教育| 常山县| 习水县| 晋江市| 鲁甸县| 武强县| 新泰市| 瑞昌市| 宣城市| 伊金霍洛旗| 日照市| 涟水县| 大埔区| 临沂市| 祥云县| 巨鹿县| 金湖县| 巴彦淖尔市| 盐亭县| 周至县|