Is there an easy way to mix C++ Code into C# code ?
Is it possible to make COM calls from C# ?
Printable View
Is there an easy way to mix C++ Code into C# code ?
Is it possible to make COM calls from C# ?
The way that you could mix C++ into C# is through DLL's.
Add a reference to the COM object into your C# project and after that you can make calls to the COM object through the interop that it is generated by .NET.