region实现大纲效果

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
    
    }
}

本文转自TBHacker博客园博客,原文链接:http://www.cnblogs.com/jiqing9006/p/6705397.html,如需转载请自行联系原作者

相关文章:

  • 2021-07-17
  • 2021-06-03
  • 2021-12-27
  • 2022-01-20
猜你喜欢
  • 2021-08-02
  • 2022-12-23
  • 2021-12-03
  • 2021-12-03
  • 2021-05-16
  • 2021-04-30
相关资源
相似解决方案