This question already has an answer here:
- Using c++ library in c# 5 answers
I have a library(.lib) which as been implemented in VC++. I want to include or use this library in c# wpf project how can i achieve it.
This question already has an answer here:
I have a library(.lib) which as been implemented in VC++. I want to include or use this library in c# wpf project how can i achieve it.
You can use marshalling to access C++ code in your C# code.
Have a look at MSDN, too.
An example
and you can use your method in your C# code like usual
Can be a bit confusing because you have to "map" the C++ types to C# and reverse.