Does Mono .NET support and compile C++ / CLI?
Does Mono .NET support and compile C++ / CLI? If not, do you know if they have any plans of supporting it? lupus We don't have a compiler for C++/CLI, it would be a very large undertaking for a very small userbase. Consider also that the C++/CLI spec is inherently flawed and non-portable, so being able to compile it wouldn't help much in the general case. You can compile using the MS .NET compiler and run in mono with these restrictions: run with mono on any system if the C++/CLI app is pure managed (but then, why use such an ugly language and not C#?) run with mono on windows in the other