嗨,有什么方法可以在Subs中对我的代码进行排序,例如在C#中的VB中

时间:2016-08-07 12:57:44

标签: c# vb.net vba

去年我在学校的VB上课,并且在某些时候学会了一种非常有用的方法来排序我的代码(通过Private Sub / End Sub语句。)我已经开始用C#编写代码了想知道在C#中有没有办法做到这一点

非常感谢和帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

这应该这样做:

#region
//code code code
#endregion

通过编写#region和#endregion,可以折叠两者之间的任何内容,而无需更改有关代码功能的任何内容。 您可以在折叠区域添加标题:

#region Math Functions

private int Add(int x, int y)
{
  // some code here
}

private int Sub(int x, int y)
{
  // some code here
}

private int Mult(int x, int y)
{
  // some code here
}

#endregion