noob: Namespaces - two projects

D

dllhell

Hi all,
yeah... I know it's a noob question but...
I have two projects: EXEproject and DLLproject.
DLLproject is added to EXEproject but I can't reach DLLproject's namespace
in EXEproject.
It will be even better when I can put both namespaces under common namespace
e.g.
CommonNamespace.EXEproject.something
and
CommonNamespace.DLLproject.something

thanks in advance
 
B

Barry Kelly

dllhell said:
Hi all,
yeah... I know it's a noob question but...
I have two projects: EXEproject and DLLproject.
DLLproject is added to EXEproject but I can't reach DLLproject's namespace
in EXEproject.

You need to add a reference to the DLL project in the EXE project.
Right-click the project, click Add Reference..., and click the 'Project'
tab, and select your DLL project.

-- Barry
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top