区域

为了便于阅读,这对于初学者在阅读 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 上进行了测试。