我将它们理解为模块,例如我的小模块:
Public Module Config
Public Property ImportSettings As ImportConfig
Sub New()
ImportSettings = ImportConfig.Read()
End Sub
End Module
但是,我无法访问ImportSettings
. 我被告知它没有被声明,它的值是'Nothing'。
我将它们理解为模块,例如我的小模块:
Public Module Config
Public Property ImportSettings As ImportConfig
Sub New()
ImportSettings = ImportConfig.Read()
End Sub
End Module
但是,我无法访问ImportSettings
. 我被告知它没有被声明,它的值是'Nothing'。