區域

為了便於閱讀,這對於初學者在閱讀 VB 程式碼以及全職開發人員維護程式碼時非常有用,我們可以使用 Region 來設定同一組事件,函式或變數的區域:

#Region "Events"
    Protected Sub txtPrice_TextChanged(...) Handles txtPrice.TextChanged
        'Do the ops here...
    End Sub

    Protected Sub txtTotal_TextChanged(...) Handles txtTotal.TextChanged
        'Do the ops here...
    End Sub

    'Some other events....

#End Region

當程式碼行變為 1000+時,可以摺疊此區域塊以獲得一些視覺幫助。它還可以儲存你的滾動工作。

StackOverflow 文件

在 VS 2005,2008,2010,2015 和 2017 上進行了測試。