I am working with a project called "Portal" with a namespace of "Portal" at C:\Projects\Portal.
I also have some classes in a file at C:\Projects\Globals\MyCode.
vb.
The MyCode.
vb looks some like:
namespace "MyCompany.Globals"
public class Hello
Shared public Function() As String
Return "Hello World"
End Function
End Class
End Namespace
How would I use the MyCompany.Globals.Hello class in the Portals project?
I've tried Imports MyCompany.Globals, but it says it can not find the namespace. Any help would be greatly appreciated!
Hugh