region实现大纲效果

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        # region 主程序
        static void Main(string[] args)
        {
            // 一行注释

            Console.WriteLine("Hello C#!");
            Console.ReadKey();
        }

        #endregion


        #region 其他程序
        public void test()
        {

        }
        #endregion
    
    }
}

posted @ 2017-04-13 18:27  TBHacker  阅读(229)  评论(0编辑  收藏  举报