码迷,mamicode.com
首页 > 其他好文 > 详细

关于特性的实例

时间:2018-05-03 01:03:10      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:multi   nta   mat   double   adk   ati   int   author   ret   

 class Program
    {
        static void Main(string[] args)
        {
            PrintAuthorInfo(typeof(FirstClass));
            PrintAuthorInfo(typeof(SecoundClass));
            PrintAuthorInfo(typeof(ThreeClass));
            Console.ReadKey();
        }
        private static void PrintAuthorInfo(Type t)
        {
            Attribute[] attrs = Attribute.GetCustomAttributes(t);
           
            foreach (Attribute item in attrs)
            {
                if(item is Author)
                {
                    Author a = (Author)item;
                    Console.WriteLine($"{a.GetName()},{a.version}");
                }
            }
        }
    }
  [AttributeUsage(AttributeTargets.Class|AttributeTargets.Struct,AllowMultiple =true)]
    //自定义特性类(应用特性的程序元素(类或者结构),程序元素可以指定多个特性)
    public class Author:Attribute
    {
        string name;
        public double version;

        public Author(string name)
        {
            this.name = name;
            this.version = 1.0;
        }

        public string GetName() {
            return name;
        }
    }
 [Author("H.Ackerman")]
   public class FirstClass
    {

    }
    public class SecoundClass
    {

    }
    [Author("H.Ackerman"),Author("H.Knott",version =2.0)]
    public class ThreeClass
    {

    }

 

关于特性的实例

标签:multi   nta   mat   double   adk   ati   int   author   ret   

原文地址:https://www.cnblogs.com/jimtang/p/8983273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!