What is the best case for accessing managed code from unmanaged code?

  • Thread starter Thread starter Bae,Hyun-jik
  • Start date Start date
B

Bae,Hyun-jik

Hi,

What is the best case for accessing managed code from unmanaged C++ code,
considering that the unmanaged code doesn't have managed extension?

Please reply.
Thanks in advance.

Regards,
Hyun-jik Bae
 
In addition to that, you can also use pointers to managed functions with
unmanaged calling conventions.

A standard case of this is virtual functions of native classes implemented
in managed code. Other cases exist as well.

Marcus Heege
 
Marcus said:
In addition to that, you can also use pointers to managed functions
with unmanaged calling conventions.

A standard case of this is virtual functions of native classes
implemented in managed code. Other cases exist as well.

.... but only through the use of Managed Extensions for C++, which the OP
specifically didn't want to use.

-cd
 
Back
Top