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

条件特性类

时间:2018-04-29 20:35:04      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:数据   eof   col   key   read   tty   write   tor   #define   

 

 

//如果没有定义 wjire 或者 refuge,
//编译器不会再元数据中生成特性信息,也就是说利用反射找不到特性信息
//但是,特性类的定义元数据和实现仍在程序集中
//#define wjire
#define refuge

using System;
using System.Diagnostics;
using System.Reflection;

namespace Test3
{
    [Cond]
    class Program
    {
        static void Main(string[] args)
        {
            //条件特性类
            var flag = CustomAttributeExtensions.IsDefined(typeof(Program), typeof(CondAttribute));
            Console.WriteLine(flag);

            var cond = CustomAttributeExtensions.GetCustomAttribute(typeof(Program), typeof(CondAttribute));
            Console.WriteLine(cond?.GetType());
            Console.ReadKey();
        }
    }


    [Conditional("wjire")]
    [Conditional("refuge")]
    class CondAttribute : Attribute
    {
        public CondAttribute()
        {
            Console.WriteLine("this is ctor");
        }
    }
}

 

条件特性类

标签:数据   eof   col   key   read   tty   write   tor   #define   

原文地址:https://www.cnblogs.com/refuge/p/8971711.html

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