Reputation: 179
Is it possible to use a C++ API (series of Header files and CPP files) in a C# project?
Maybe its possible to compile these files into .obj
or .lib
files and include them in the Visual C# project? Something similar is done for Crypto++
.
If it is possible, are there any drawbacks from this?
Context and import information:
Upvotes: 1
Views: 798
Reputation: 1392
at least , you have 2 method to invoke C/C++ API from .NET:
Upvotes: 1