Reputation: 5545
I have two Applications. Applications1 owns Namespace SelfMade
now I want to import that Namespace in Application2 but cannot find it. I tried Imports SelfMade
but vb cannot find the Namespace. How I can access my namespace in Application2?
Example of my Namespace:
Namespace testNS
Public Class Triangle
Public Length As Double
Friend Height As Double
Private Option As Double
End Class
End Namespace
Upvotes: 0
Views: 66