我有两个应用程序。Applications1Namespace 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