acessing C# classes from non-managed C++

  • Thread starter Thread starter Yordan Gyurchev
  • Start date Start date
Y

Yordan Gyurchev

We have a plugin based app in C# but due to other exisiting
legacy products and tools we need to access some of
the "new" C# classes from these old MFC and C++ products.

I've looked on the web but I can only find info about accessing
C# classes from Managed C++.

Can you point me to any source of such information (article,
tutorial, reference)?

Thanks,
Yordan
 
search for topics under keywords such as Interop, or CCW (COM Callable Wrapper). Framework will expose your C# class as if it's a COM object for unmanaged code.
 
Back
Top