Most common or vicious mistakes in C# development for experienced C++ programmers

后端 未结 13 1488
没有蜡笔的小新
没有蜡笔的小新 2020-12-23 19:10

What are the most common or vicious mistakes when experienced C++ programmers develop in C#?

13条回答
  •  眼角桃花
    2020-12-23 19:59

    Writing the full namespace each time.

    This is fine in C++ when you're typing std::this or boost::that. Not so great in C# when you repeat System.Windows.Forms.Whatever all over the place.

提交回复
热议问题