#Region 指示詞
更新:2007 年 11 月
摺疊與隱藏 Visual Basic 檔案中的程式碼區段。
#Region "identifier_string"
#End Region
參數
identifier_string
必要項。做為摺疊區域之標題的字串。依照預設,區域是摺疊的。#End Region
結束 #Region 區塊。
備註
使用 #Region 指示詞,來指定使用「Visual Studio 程式碼編輯器」之大綱功能時要展開或摺疊的程式碼區塊。#Region 陳述式 (Statement) 支援區塊語意 (Semantics) (例如 #If...#End If),表示開始和結束都必須位在相同程式碼區塊中。您可以將區域放置或「套疊」(Nest) 在其他區域內,以群組類似的區域。
範例
這個範例會使用 #Region 指示詞。
#Region "MathFunctions"
' Insert code for the Math functions here.
#End Region