区域

区域是可折叠的代码块,可以帮助你提高代码的可读性和组织性。

注意: StyleCop 的规则 SA1124 DoNotUseRegions 不鼓励使用区域。它们通常是代码组织严重的标志,因为 C#包含部分类和其他使区域过时的功能。

你可以通过以下方式使用区域:

class Program
{
    #region Application entry point
    static void Main(string[] args)
    {
        PrintHelloWorld();
        System.Console.ReadLine();
    }
    #endregion

    #region My method
    private static void PrintHelloWorld()
    {
        System.Console.WriteLine("Hello, World!");
    }
    #endregion
}

在 IDE 中查看上述代码时,你将能够使用+和 - 符号折叠和展开代码。

扩展

StackOverflow 文档

倒塌

StackOverflow 文档