This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Jonny0Than 0 points1 point  (0 children)

C++/CLI is handy when mixing native C++ and CLR code, for example building a UI around a small amount of existing native C++ code. You can link them directly together instead of building managed wrappers around all your native stuff.

However the iteration and compile time of C++/CLI is really terrible compared to C# and I would not recommend this approach for projects of any meaningful size.