I have a class written in c++. My graphic interface is in c#. Is there any way to create an instance of this c++ class in my c# code, and use it's functions?
You would have to wrap it in either a Managed C++ class so that other .NET framework components can call it, or wrap it in a COM layer with ATL, again, so .NET (and legacy COM stuff like VB6 programs) can call it.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.