mixing managed and unmanaged code

  • Thread starter Thread starter tsmith
  • Start date Start date
T

tsmith

Hello,

Quick question: Can I mix managed C++ (forms and GUI stuff) with nonmanaged
C++ code (Direct3D). Note that I am not interested in managed DX (the C#
API). I still am writing C++ code, but would like to use the .NET GUI
library with managed C++, and unmanaged DX code. Is this possible and easy
to do?
 
tsmith said:
Hello,

Quick question: Can I mix managed C++ (forms and GUI stuff) with nonmanaged
C++ code (Direct3D). Note that I am not interested in managed DX (the C#
API). I still am writing C++ code, but would like to use the .NET GUI
library with managed C++, and unmanaged DX code. Is this possible and easy
to do?

You can mix managed and unmanaged code. Whwther it's easy or not depends on
what you want to do
http://www.ondotnet.com/pub/a/dotnet/2003/03/03/mcppp2.html

You can find some doc's here:
http://www.gotdotnet.com/team/cplusplus/

/ Fredrik
 
Back
Top