Has anyone tried coding in managed C++? I have a few questions :
- How productive is the language compared to C#?
- Is there any restriction on type of projects that can be written? Can we write a web application in managed C++?
- Is it possible to mix managed and unmanaged C++ code in one application?
- Is MFC still valid in managed C++? Will it be the best option when considering migration of a VC++ application?
I’ve found C# to be far more productive. The real magic of managed C++ is that yes, you can mix managed and unmanaged code in it – even inside one function! I don’t know how Microsoft did that (and apparently neither do they, because the official name for this feature is “IJW” – “it just works” :)).