+4  A: 

You need to actually reference the library from your C# project. Right-click the project and then select "Add Reference". On the "Projects" tab, select the project and click "OK".

Dean Harding
As its a DLL (Class Library), "Add reference" then click on the "Browse" tab and locate the DLL.
Jason Jong
@Jason: That also works, except if he has the project in the same solution, then adding a project reference makes sure Visual Studio always builds them in the correct order (though you could also do that with an explicit dependency, but lets not get too complicated ;)
Dean Harding