1
Answer

C# work with dll file

Sie Ste

Sie Ste

12y
1.6k
1
For a C# 2008 application, I need to add a specfic dll file to an existing application and have all the project files that need to work with it reference this dll file.

Since I have never added a dll file to a solution and I have very limited experience working with C#, can you tell and/or show me how to add a dll file to a C# 2008 solution file and have all the applicable project files access this required dll file?
Answers (1)
0
Nitesh Luharuka

Nitesh Luharuka

NA 18k 1.5m 12y
Assuming you have the DLL file with you, perform the following steps to add the dll to existing project
1. Open Existing Project where you want to add the DLL
2. Right Click on References in Solution Explorer. Click Add Reference
3. Select Browse Tab
4. Browse to the path where the DLL is located and select the DLL you want to refer.
5. Build the project

You're done!!
Accepted