在c#中、预处理指令#region和#endreg的作用是什么?

2024-12-02 08:22:05
推荐回答(3个)
回答1:

楼上正解,就是能让代码折叠起来而已,无其他任何功能,在编译时会被忽略掉的,只是为了开发时方便查看

回答2:

收缩成一个代码块,方便后期维护时的浏览
#region
#endregion

回答3:

#region lets you specify a block of code that you can expand or collapse when using the outlining feature of the Visual Studio Code Editor.
作用就是让你在VS中编辑代码使用“大纲”功能时,可以展开和折叠指定的一段代码