using 3th party dll

That depends on the DLL. Is it a .NET assembly or a COM component? If it's either then you add a reference to the library in your project. If it's neither then you must use Platform Invoke, just as you do to invoke the Windows API.
 
Back
Top