.NET Services from pure VS 6.0 C++ DLL?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to write a C++ DLL in Visual Studio 6.0 that can access .NET
services? I'm willing to write some kind of little intermediary layer in
..NET C++ that exposes entry points to the 6.0 C++ DLL and then invokes .NET
classes/objects, if that is necessary. If this is possible could you point
me to primary documentation suitable for newbies who have never written a
line of code for the .NET world?
 
Ok, I'll take shot at answering my own question. Search MSDN for "COM
Callable Wrapper" and you'll see that any code that knows how to use COM
objects can invoke interfaces implemented in any .NET language.

Craig
 
Back
Top