I\'ve created a new Class Library in C# and want to use it in one of my other C# projects - how do I do this?
There are necessary steps that are missing in the above answers to work for all levels of devs:
Add it as a reference.
References > Add Reference > Browse for your DLL.
You will then need to add a using statement to the top of your code.
I'm not certain why everyone is claiming that you need a using
statement at the top of your file, as this is entirely unnecessary.
Right-click on the "References" folder in your project and select "Add Reference". If your new class library is a project in the same solution, select the "Project" tab and pick the project. If the new library is NOT in the same solution, click the "Browse" tab and find the .dll for your new project.