我有两个应用程序。 Applications1拥有Namespace SelfMade
现在我想在Application2中导入该命名空间但无法找到它。我试过Imports SelfMade
但是vb找不到命名空间。我如何在Application2中访问我的命名空间?
我的命名空间示例:
Namespace testNS
Public Class Triangle
Public Length As Double
Friend Height As Double
Private Option As Double
End Class
End Namespace
答案 0 :(得分:1)