AttributeUsage

AttributeUsageAttributeUsage【AttributeUsage】  System.AttributeUsage声明一个Attribute的使用范围与使用原则。    AllowMultiple 和 Inherited 参数是可选的,所以此代码具有相同的效果:    AttributeTarget的值可以参考1。部分可取值如下:    如果 AllowMulti

AttributeUsage

  System.AttributeUsage声明一个Attribute的使用范围与使用原则。

  AttributeUsage

  AllowMultiple 和 Inherited 参数是可选的,所以此代码具有相同的效果:

  AttributeUsage

  AttributeTarget的值可以参考1。部分可取值如下:

  AttributeUsage

  如果 AllowMultiple 参数设置为 true,则返回特性可对单个实体应用多次。

  如果 Inherited 设置为 false,则该特性不由从特性化的类派生的类继承。

  Attribute.GetCustomAttribute可以获取一个类的Attribute。

AttributeUsage
AttributeUsage

[AttributeUsage(AttributeTargets.Class)]
    public class VersionAttribute : Attribute
    {
        public string Name { get; set; }
        public string Date { get; set; }
        public string Describtion { get; set; }
    }

 [Version(Name = "hyddd", Date = "2009-07-20", Describtion = "hyddd's class")]
    public class MyCode
    {
        //...
    }

 class Program
    {
        static void Main(string[] args)
        {
            var info = typeof(MyCode);
            var classAttribute = (VersionAttribute)Attribute.GetCustomAttribute(info, typeof(VersionAttribute));
            Console.WriteLine(classAttribute.Name);
            Console.WriteLine(classAttribute.Date);
            Console.WriteLine(classAttribute.Describtion);
        }
    }

View Code

 

参考:

1、http://msdn.microsoft.com/zh-cn/library/system.attributetargets.aspx

2、http://msdn.microsoft.com/zh-cn/library/tw5zxet9.aspx

3、http://www.cnblogs.com/hyddd/archive/2009/07/20/1526777.html

今天的文章AttributeUsage分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/24047.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注