I have a class file named HttpBaseClass.vb where I define a Namespace:
and I want to Import it to a different class file, HttpRequestResponse.vb, wouldn't I declare it like this?:
when I try to compile my project I get the following error:
It seems like there is a pretty basic error here but I can't seem to see it.
Code:
Namespace BaseClassNameSpace.Web.BaseServices
....
End Namespace
and I want to Import it to a different class file, HttpRequestResponse.vb, wouldn't I declare it like this?:
Code:
Imports System
Imports System.Collections.Specialized
Imports System.Net
Imports System.Text
Imports System.IO
Imports BaseClassNameSpace.Web.BaseServices
when I try to compile my project I get the following error:
Code:
C:\myprojectfolder\Classes\HttpRequestResponse.vb(7): Namespace or type 'BaseServices' for the Imports 'BaseClassNameSpace.Web.BaseServices' cannot be found.
It seems like there is a pretty basic error here but I can't seem to see it.