C# 预处理器指令

#region和#endregion的作用

折叠 收纳代码,对代码进行分组,让代码容易阅读

    #region add(x,y)
        public static void Add(int x, int y)
        {
            Console.WriteLine("{0} + {1} = {2}", x, y, x + y);
        }
        #endregion

效果

 

posted @ 2021-10-03 10:27  小林野夫  阅读(82)  评论(0编辑  收藏  举报
原文链接:https://www.cnblogs.com/cdaniu/