C++ MFC vs .NET?

前端 未结 11 1343
梦如初夏
梦如初夏 2021-01-30 08:36

My colleagues are using Visual Studio 2002 and uses the C++ MFC. I am developing in C #.

It has not been any problems before, but now questioning our customers if we re

11条回答
  •  没有蜡笔的小新
    2021-01-30 09:25

    What is the problem you're looking to solve? Suppose you know both C++/MFC and C#/.NET equally. Which toolset would let you build and maintain better? (Better is subjective, but again that depends on your goals)

    Unless I'm doing a lot of work with native APIs that aren't available in .NET, I will go with .NET by far. C++ is a great language and nothing's to stop you from coding in Managed C++ so as to keep the .NET framework and memory management.

    By comparison, my observation is the MFC framework is very much a kludge and unwieldy compared to .NET Windows forms.

提交回复
热议问题