I'm a C# programmer who hasn't used C++ since the pre-.Net days.
I have a C# .Net DLL that I use with other C# programs. In the calling program in Visual Studio I simply do an "Add Resource..." and a Using" statement in the code that calls into it and voilà! there it is.
Now I have a customer who wants to access our DLL in a Visual Studio 2010 C++ (CLI) program. So I want to make a practice C++ program that uses our DLL. What's the equivalent of Add Reference in a C++/CLI project and what do I put in the program to expose the namespace for my DLL? Where does the DLL have to physically be? In the Solution Explorer in Visual Studio for the C++ project I don't see the same things as I do in a C# project.