#Region Directive

Syntax

#Region "region description"

Group

Declaration

Description

The Region directive starts a group of blocks or statements which are considered together. The directive has no meaning and is ignored.

See also

#End


Sub Main
    DoIt
    DidIt
End Sub
 
#Region "Utilities"
Sub DoIt
End sub
 
Sub DidIt
End Sub
#End Region