有可能将一个函数分成几个部分,就像这样吗?
Function myFunc Section Dim i As Integer = 0 ... End Section Section Dim i As Integer = 0 ... End Section End Function
我意识到它可以完成
If True Then Dim i As Integer = 0 ... End If
但这似乎是一个黑客
我是以错误的方式来做这件事的吗?