adding dll
-
can anyone tell me how do we add a dll to our project?
-
can anyone tell me how do we add a dll to our project?
Hi, i guess you were talking about a managed c++ dll and you would like to add it to a clr project in VS2005. If so, then you'll have to do the following: 1. go to "Project->References", click on "Add Reference" 2. Browse to your dll and add it 3. reference the namespace of your dll e.g.
using namespace MyDllNamespace; using namespace MyDllNamespace::Net; ...
regards Tobias :cool: -
Hi, i guess you were talking about a managed c++ dll and you would like to add it to a clr project in VS2005. If so, then you'll have to do the following: 1. go to "Project->References", click on "Add Reference" 2. Browse to your dll and add it 3. reference the namespace of your dll e.g.
using namespace MyDllNamespace; using namespace MyDllNamespace::Net; ...
regards Tobias :cool:In addition to Tobias' info, you can also use #using instead of using "Add Reference" in the Project Properties: Example: #using