Dimitri C.
Dimitri C.

Reputation: 22496

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:

Upvotes: 8

Views: 3272

Answers (3)

Sergey Teplyakov
Sergey Teplyakov

Reputation: 11647

In C++ you can simply recompile your codebase with /clr. This technique called IJW (It Just Works) so you can easily use your existing classes with CLR.

Upvotes: 2

Tarydon
Tarydon

Reputation: 5183

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.

Upvotes: 7

Nikola Smiljanić
Nikola Smiljanić

Reputation: 26873

Go to project properties -> General -> Common Language Runtime support -> change to /clr

It's called CLR now. Read about it here and here.

Upvotes: 7

Related Questions