I would like to use an API that is written in c++. It involves including header files and libraries. How can I use this API in a C# application?
|
|
The easiest way is to write a 'shim' assembly in C++/CLI. This lets you mix the unmanaged interface and managed code together so you can 'translate' the unmanaged API into some that is consumable in managed code. There are lots of resources out there, for an in depth overview see C++/CLI Rationale and for a discussion of the interop issues try this post on a .NET to C++ Bridge. |
||
|
|
|
There are a few options to do this. The easiest, as Rob Walker mentioned, is to use C++/CLI to make a managed wrapper. However, there are other options.
|
||
|
|
