有可能将一个函数分成几个部分,就像这样吗? Function myFunc Section Dim i As Integer = 0 ... End Section Section Dim i As Integer = 0 ... End SectionEnd Function 我意识到它可以完成 If True Then Dim i As Integer =
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
但这似乎是一个黑客
我是以错误的方式来做这件事的吗?
我建议将“Sections”重构为单独的函数或subs,并在适当时调用它们.你想要这个独立的事实似乎突出了重构的机会….