B
B. Chernick
I haven't made all that much use of 'Namespace' but I thought I understood
it. I'm in the process of translating a C# project to VB. (Dot Net 2.0)
In the program I'm working on now, I have a root namespace of <Name1>.<Name2>
In a project sub-folder I have a class file (call it Class2) with the
namespace of <Name1>.<Name2>.<Name3>
In the main directory, in the main class file (call it Class1), it is
necessary to reference items in Class2. The original C# version of Class1
had a declaration of 'using <Name1>.<Name2>.<Name3>; The VB equivalent
(Imports <Name1>.<Name2>.<Name3>) does not seem to work.
However 'Imports <Name1>.<Name2>.<Name1>.<Name2>.<Name3> does work.
What's am I forgetting?
it. I'm in the process of translating a C# project to VB. (Dot Net 2.0)
In the program I'm working on now, I have a root namespace of <Name1>.<Name2>
In a project sub-folder I have a class file (call it Class2) with the
namespace of <Name1>.<Name2>.<Name3>
In the main directory, in the main class file (call it Class1), it is
necessary to reference items in Class2. The original C# version of Class1
had a declaration of 'using <Name1>.<Name2>.<Name3>; The VB equivalent
(Imports <Name1>.<Name2>.<Name3>) does not seem to work.
However 'Imports <Name1>.<Name2>.<Name1>.<Name2>.<Name3> does work.
What's am I forgetting?