adding DLL to project and calling its functions

  • Thread starter Thread starter Angel
  • Start date Start date
A

Angel

How can I add a dll (written in C-language) to my Windows C# project so that
I can call functions from it? Also, once I add it to my project, how do I do
the actual function calls?

Thank you,
Angel
 
You can't add your C dll directly to the project you must use PInvoke() and [dllimport

I hope this help...
 
Back
Top