In my C# application, I would like to write a part of the code in C. I plan to write a DLL witch would be interoperable with .Net. How can I do that?
|
There are essentially three right ways to do it:
And there is one thing absolutely NOT to do:
EDIT: I want to also explain some good practices for option #2 which will maximize portability and make the native C/C++ parts usable from unmanaged applications as well. You can make that easier with a macro, the usual way of doing it is: In your header file, all the function declarations look like
In your project, the definition is
In consumer projects
and then you can define the macro differently for other compilers like gcc which don't use The complete solution would look like (in public header file
and then your Visual C++ project would cause |
|||||||||||
|
|
In a nutshell: (1) Create a new C++/CLI library project. (2) Write your code. For classes that need to be accessible from your C# project, make sure to create them as CLR classes:
(3) Compile the project and add a reference to it in your C# project. |
|||||
|
|
Through P/Invoke layer. |
|||||||
|
|
Below is an example for an application where I had to do just that. In my case, I needed a DLL to wrap calls to functions that were only available in a .lib. The key part is the
|
|||
|
