C++ wrapper for .net assembly
Managed C++/CLI
2
Posts
2
Posters
0
Views
1
Watching
-
hello, I want to create a managed C++ dll to access a .net component. The managed C++ dll is used in a plain C++ application. Is this possible? greetings, Niko
-
hello, I want to create a managed C++ dll to access a .net component. The managed C++ dll is used in a plain C++ application. Is this possible? greetings, Niko
For accessing a .net component from palin c++(unmanaged)you have to use CCW com callable wrapper. For this, if the .net component is already written in such a way that it be used for generating the ccw, directly use it. or else write a managed c++/c# wrapper which is compliant with requirements fo a CCW. then use the ccw from plain c++ cheers...milton kb