(72)C# 特性

2021-03-08 22:27

阅读:384

标签:style   cond   ram   new   pre   ase   console   执行   方式   

 

Conditional特性

调用的方式是否在debug或者release下执行
class Program
    {
        static void Main(string[] args)
        {
            Program program = new Program();
            program.fuc();
        }
        //只有release下才执行
        //[Conditional("RELEASE")]
        //只有debug下才执行
        [Conditional("DEBUG")]
        void fuc()
        {
            Console.Write("OK");
        }
    }

 

(72)C# 特性

标签:style   cond   ram   new   pre   ase   console   执行   方式   

原文地址:https://www.cnblogs.com/buchizaodian/p/12775138.html


评论


亲,登录后才可以留言!