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

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

    • the difference between struct and class in the two
    • the difference between a using alias and a typedef
    • when do my objects get collected? how do I destroy them now?
    • how big is an int? (it is actually defined in C#)
    • where's my linker? (actually, Mono does have a full AOT linker for some scenarios)

提交回复
热议问题