AS3 中是否有与 C# 的 #region 指令等效的指令?
刚刚开始使用 FlashDevelop 在 AS3 中进行编码,并且具有 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
}
Just started coding in AS3 with FlashDevelop and coming from a C# background, I would like to know if there's something equivalent to the #region directive in AS3?
The #region directive in C# essentially allows an IDE e.g Visual Studio to collapse or expand a section of code to improve readability. With #region directives, you can split codes in sections e.g constructors, properties, public/private methods to aid others perusing your code.
So the C# code below ...
interface IPurchaseOrder
{
#region Properties
bool IsProcessed { get; set; }
bool ISValidOrder { get; set; }
#endregion Properties
#region Methods
bool ProcessOrder();
#endregion Methods
}
becomes
interface IPurchaseOrder
{
Properties
Methods
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 flashdevelop 它的工作原理如下:
With flashdevelop it works like this: