5

刚开始在 AS3 中使用 FlashDevelop 进行编码并且来自 C# 背景,我想知道是否有与 AS3 中的#region 指令等效的东西?

C# 中的#region 指令本质上允许IDE(例如Visual Studio)折叠或展开一段代码以提高可读性。使用#region 指令,您可以将代码拆分为多个部分,例如构造函数、属性、公共/私有方法,以帮助其他人阅读您的代码。

所以下面的 C# 代码...

interface IPurchaseOrder
{
    #region Properties

    bool IsProcessed { get; set; }
    bool ISValidOrder { get; set; }

    #endregion Properties

    #region Methods

    bool ProcessOrder();

    #endregion Methods
}

变成

interface IPurchaseOrder
{
    Properties

    Methods
}
4

1 回答 1

9

使用 flashdevelop,它的工作原理如下:

//{ region region name

  ...your code here

//} endregion 
于 2010-04-11T12:44:34.650 回答