Implementing an external DLL's functionality
I have only created my own DLLs and implemented them into my own solutions up to this point...I have not utilized external ones. I downloaded a DLL (and .lib file that came with it) which has a lot of functionality I want to use in my project. However, I have NO idea how to place it into my solution/project to access it. :( I've went through the few books I've got, which mention using "[DllImport("TheDLLFileName.dll"]" and including the "using System.Runtime.InteropServices", but that doesn't seem to be working. Am I missing something?
Thanks