Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to port C++ code to C++/CLI in Visual Studio?

I have an application written in native C++ which I'd like to get running on the .NET virtual machine. I was thinking of recompiling the C++ code as C++/CLI, using the Visual Studio 2008 compiler. Regrettably, I don't find any documentation on how to do this, so hence my questions:

  • Does this actually make sense? Am I trying the impossible?
  • Where can information on the topic be found?
like image 554
Dimitri C. Avatar asked Jan 22 '10 09:01

Dimitri C.


1 Answers

A lot of native C++ code will actually just compile and run on C++/CLI. This is really a kind of hybrid compiler that can call native Win32 functions and use standard C libraries like OpenGL. You can even call COM interfaces directly (all the stuff you can do with a native C++ compiler).

The .Net library is also available but for these you create managed classes (using the ref class keyword). You will use gcnew to allocate memory for these classes (from a garbage collected heap). Memory for your normal classes is still allocated using new and delete (from a standard, non garbage-collected heap).

In short, you can migrate to .Net in bits and pieces, though there is still some friction when switching between managed and unmanaged classes.

I found this book useful: Pro Visual C++/CLI.

like image 86
Tarydon Avatar answered Nov 06 '22 00:11

Tarydon