What are the most common or vicious mistakes when experienced C++ programmers develop in C#?
|
|
|||||||||||||
|
|
I've seen many C++ coders code in a COM style in C#, trying to deal with the inadequacies of the language. C# provides lots of a type safe support for your enums and there are usually nicer APIs then P/Invoking back down to C++. The other thing I've seen catch most people out is that C# generics are not templates. |
|||||
|
|
Calling |
|||||
|
|
|||||||||||||||
|
|
Thinking that "garbage collection" = "I never have to worry about object lifetime at all". For instance, opening a Or:
|
|||||||||||||||
|
|
Confusing "pass by reference" and "reference type":
(Compare with C++: |
||||
|
|
|
||||
|
|
|
Writing the full namespace each time. This is fine in C++ when you're typing |
||||
|
|
|
Incidentally, the C# compiler has a number of heuristics in it for helping out the experienced C++ programmer who is a novice C# programmer. For example, if you say
the compiler will helpfully point out that the [] is a part of the type in C#, so you probably meant
C# also allows things like putting unnecessary semicolons at the end of a class declaration so that C++ programmers who are in that habit don't get bitten by it. |
||||
|
|
|
Forgetting to specify access modifiers for every class member. |
|||||||
|
|
using Hungarian Notation and other C++ naming conventions
|
|||||||
|
|
One that got me, and I believe a lot of non C++ people too, was leaking memory due to registered events keeping an object alive. IDisposable grated to begin with (and still does if I'm honest) but was pretty obviously going to be a difference when going from native to managed code so it is not something I'd expect C++ developers to actually fall foul of, they just won't like it. |
||||
|
|