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

后端 未结 13 1526
没有蜡笔的小新
没有蜡笔的小新 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:38

    using Hungarian Notation and other C++ naming conventions

    private int m_iMyIntField;
    class CWidget { ... }
    

提交回复
热议问题