What are some common mistakes made by .NET developers, and how can we avoid them?
For example, trying to open a file without checking whether or not it exists, or catching an error unnecessarily.
|
What are some common mistakes made by .NET developers, and how can we avoid them? For example, trying to open a file without checking whether or not it exists, or catching an error unnecessarily. | ||||
|
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
Instead of
The first example will reset the stack trace to the point of the throw, whereas the latter will maintain the original stack. This is crucial for debugging.
Is never right when being used to re-throw an exception. | |||||||||||||||||||||
feedback
|
|
I always get hung up on this one.
oooops didn't actually change s....
Its pretty easy to make that mistake. | |||||||||||||||||||||
feedback
|
|
Don't use "magic numbers" in your code. Ex:
Use Enumerations wherever possible, so the meaning, not the number, is exposed:
(I could have used a switch statement here, as well) | |||||||||||||||||||||
feedback
|
|
Oh, I forgot my number one pet peeve, over specification of input parameters. Let's say we have a method that takes a collection of some type, always allow the least specific type of collection needed by the method. This is what you see A LOT:
As you see the method does nothing but loops through the list, so requiring a list is an over specification, all you need is something you can loop through, ie. an This is a lot nicer to the caller:
If the method requires to know the count of the bars collection use | |||||||||||||||||||||
feedback
|
| |||||||||||||||||||||
feedback
|
|
Not using a | |||||||||||||||||
feedback
|
|
Use this cast:
... only if the program logic is such that you anticipate obj may or may not be of type tree. In the situation where you expect that obj will only ever be of type Tree, prefer this style of cast:
Prefer a (TargetType) style cast unless you really do need to make use of the conditional functionality offered by an 'as' cast. Note: be sure to follow an 'as' cast with an 'if' or other appropriate logic to ensure that if the result of the 'as' was null, an attempt won't be made to dereference it. This is a mistake:
In this case, the programmer meant one of these:
Some people believe that...
...is bad because it may throw an exception if the prerequisite that obj is a Tree isn't met. It's not bad though, because it will throw an InvalidCast exception. That's the right sort of exception and is thrown at the right time. The NullReference exception that occurred after the 'as' cast in the first GrowTree() example gets thrown:
These two reasons make it more difficult to debug and determine what the real problem was. The performance of these two types of cast is similar. It is true that a (TargetType) style cast throws an exception if the cast fails. However, this is not a problem that would affect performance. The reason is that we use a (TargetType) style cast only when we expect the cast will always succeed. So, no exception should ever be thrown! If an exception does get thrown, then there is a problem in the logic/design of the code. Fixing a problem like this by changing the (TargetType) cast into an 'as' style cast is probably wrong as it will probably just mask the real cause of the problem. Using the 'as' cast instead of the (TargetType) cast because you think it looks prettier is not a good reason for writing incorrect code. Writing:
every time you need a cast, "just to be on the safe side" is absurd. You have to stop somewhere, otherwise one day you'll find yourself writing:
Code like this introduces more and more conditional execution paths through your code. Every time you write some code to cope with a case that you don't expect should happen, you will increase the complexity of your program. Unnecessary complexity is just the kind of thing that causes bugs to slip in to code. The root causes of bugs will be tricky to find because they'll be hidden behind other unnecessary error handlers that try to hide or log the problem and carry on. A (TargetType) cast adheres to the generally good advice of writing code to fail-fast. | |||||||||||||||||||||
feedback
|
|
Not unhooking event handlers appropriately after wiring them. This is because each event registration causes a reference to be created from the event source to the object/delegate that handles the event. These references can easily form part of a path of references from a root heap object to the handler. Any object that has a path of references from the root heap object will not be garbage collected. | |||||||||||||
feedback
|
|
The most common error I make is starting to code without thinking first. I still catch myself doing it from time to time... Does happen when I work outside the .NET framework, too. Another bad habit (which I successfully dropped) is swallowing exceptions:
Understanding the pitfalls of exception handling took me some effort, but it was worth the time I spent on it. | |||||||||||||||||||||
feedback
|
|
Deploying your ASP.NET applications to production with It's so common, there is a built-in command to the SOS extension to WinDBG. Just get a memory dump of an ASP.NET application and run:
which would output something like: 0:016> !finddebugtrue Debug set to true for Runtime: 61b48dc, AppDomain: /MyDebugApplication Debug set to true for Runtime: 1f50e6d8, AppDomain: /MemoryIssues Total 16 HttpRuntime objects Tess' article above has more examples. | |||||||||||||
feedback
|
|
If you are going to be doing a large amount of string concatenation, use the System.Text.StringBuilder object. Bad:
Good:
| |||||||||||||||||||||
feedback
|
|
What I really hate is when programmers ignore compiler warnings and just leave them in the code. If your project ends up with 100 compiler warnings that you consider "okay to live with" when the 101st compiler warning appears that you might not be happy with you are very unlikely to spot it, you're then likely to be introducing unexpected behaviour. On a similar line, I also hate it when people change source code in a way that causes it to break unit tests and then don't fix the source code or the test so that they pass. I've been working on a solution that has had 9 broken test cases new for the past 3 weeks and it is driving me mad! Whenever I break a unit test it is harder for me to find what I have broken. | |||||||||||||
feedback
|
|
1. RAII (resource acquisition is initialization) A stupid name for a great idea. In C++, constructors are mirrored by destructors. After some serious internal and external lobbying right before C# was released, MS added the Simple example - an Undo system. You want to support "batch" undo transactions, in which several actions get bound up into a single one. The application would do this:
The point is,
Now the application code can just do this:
Now there is no need to correctly figure out which method is the "ender" for the "beginner" of the state (which in some situations would not be as obvious as in this example). And ask yourself - would it make much sense for Unfortunately the internet and older books are riddled with advice about how 2. Exception Safety. There are some operations that do not throw. Assignment cannot be redefined in C#, so:
Assuming x and y are fields or variables of the same type, that will never, ever throw (except under truly bizarre circumstances where you can no longer rely on anything working). How reassuring is that?! But also useful. Think of how, often, one of your methods will update the state of the class it belongs to. Sometimes it will modify two or three (or more) private fields. What if an exception is thrown at some point during this multiple-update of state? What state is your object left in? Will one of the fields be updated, but not the other two? And does the resulting state make any sense? (does it "satisfy the class invariant"?) Or will it later cause your code to get confused and cause further damage? The solution is to figure out what the changes need to be, before doing anything to update your fields. Then when you have all the answers ready, do the assignments - safe in the knowledge that assignments never throw. Again, because of GC, C# programmers have been encouraged to think that this is a C++-specific problem. It's true that exception safety (and RAII) are commonly spoken of in terms of deleting memory allocations, but that is just one example (it happens to be very important in C++). The truth is, exception safety is an issue that concerns any program that has non-trivial modifiable state in it, which is most programs. Another issue with exceptions is that they are just as much a part of the "interface" exposed by a method as are the parameters and the return value. We are encouraged (by some of the people answering this question) to catch specific exceptions instead of just
How do you know that Compare with this cautionary tale:
Very clever, until the author of The moral is that you shouldn't rely on undocumented, untyped coincidences, you shouldn't sniff out the internals of a method you are calling. You should respect information hiding. But this applies to exceptions as well. If a method allows a huge variety of exceptions to leak out of it, then it has a very, very complicated interface, which its author probably didn't intend for you to be reliant on. It's not really any of your business how a method works internally. This is all partly the fault of lazy library authors. When writing a nice clean modular library, consider defining your own exception type(s). Make sure that your library's methods ONLY throw your approprate exception types and document this fact. Your library methods' code will look like this:
I call this normalizing the exceptions. Note that by passing x into the constructor of And when catching exceptions thrown by a badly written or badly documented method (one that may or may not throw all manner of exception types - who knows?) I would advise that you do NOT catch whatever specific exception types it throws, discovered by trial and error in the debugger. Instead, just catch But... Unfortunately catching For the details, see:
In short - if you catch all exceptions, you also catch fatal exceptions (ones that you want to cause your program to stop and capture a stack trace or a mini dump). If your program attempts to limp along after such an exception, it is now running in an unknown state and could do all kinds of damage. Reponses to several comments from P Daddy: "Your advice to ignore the conventions prescribed to by the majority of the industry, as well as Microsoft themselves..." But I'm not advising that at all. The official advice on "IDisposable is not RAII... the using statement, as convenient as it is, is not meant as a generic scope guard..." And yet it cannot help but be a generic scope guard. Destructors in C++ were not originally intended as a generic scope guard, but merely to allow cleanup of memory to be customised. The more general applicability of RAII was discovered later. Read up on how local instances with destructors are implemented in C++/CLI - they generate basically the same IL as a "Your Begin/End Transaction model seems to be missing a rollback..." I used it as an example of some thing with on/off state. Yes, in reality transactional systems usually have two exit routes, so it's a simplified example. Even then, RAII is still cleaner than
The Case Study: Iterators The For an example, look at the most widely used (in modern C#) way of implementing When you write an iterator (a function returning The reason is simple. The Dispose method executes any outstanding Fortunately, most clients of Ultimately, this is just one (very widely used) example that demonstrates that there is a class of cleanup problems for which lazy cleanup (GC, finalizer thread) is not applicable. This is why This is not to say that you must never add a finalizer to something that is disposable, just that finalizers are only appropriate in a subset of cases. | |||||||||||||||||||||
feedback
|
|
Unnecessary initialization,
Better:
Also fine,
Best,
| |||||||||||||
feedback
|
|
Not using ReSharper! (Or another code analysis tool - but R# is the best.) I'm surprised nobody has mentioned it yet, because it automatically picks up many of the mistakes mentioned in other answers. | |||||||||||||
feedback
|
|
Referencing constants across assemblies, that may not get updated together. Here is an article i wrote in 2007, pasted whole sale Referencing Constants We all know the classic lesson from school. Never use “magic numbers” in your code. Always define a constant and use it throughout. Not only does it give it contextual meaning, it also makes it easy to alter the value only at one place in the future. Sweet deal huh? Well, maybe not as much as one might think. There is a subtle issue with the use of constants that perhaps not everybody is aware of. Let’s do something practical to sink the idea; go ahead and open up Visual Studio:
Those who play WOW know that the maximum attainable player level used to be 60. So let’s create a PlayerLimits class in ConstantLibrary
Now, in ConstantDependent, 1. Use Form1 2. Put in a button btnMaxLevel 3. Put in a label lblMaxLevel 4. Set the btnMaxLevel click event to
Build and run the solution. When you click the button, 60 appear. Now,
It remains at 60. Oops. What is happening here?
To be specific, it would be IL_0007 in the sample below.
The IL code is using the literal integer value of 60. Ouch. What the C# compiler has done is to inline the constant value literally into the client assembly. If you are in one of those environments where you are only allowed to promote changed assemblies into UAT or production environment, and you thought you could alter just an assembly with modified constants, well, we all thought wrong. Recommendation: Use constants only within an assembly. If they are placed in some other assembly, make sure they get compiled together and promoted together, even when the client assembly has no change in code. If you can guarantee the constants never change values, then power to you. Otherwise, use static read-only values for dynamic referencing. The following snippet will “propagate” the correct value to the client assembly even if it wasn’t compiled together.
| |||||||||||||||||||||
feedback
|
|
If you know in advance the size of collection you are about to fill, reserve the space when creating your collection.
For very large list, not reserving the space causes the collection to be re-allocated over and over (at each power of two). Another tip: When adding a lot of items to a collection, it's more efficient to use one
| |||||||||||||
feedback
|
|
Believing that you're improving array iterating loop performance by extracting the Length property ahead of time. Surprisingly, this is actually slower:
Than this:
The .NET runtime injects a check each time you access a value in an array, to make sure that the index you've given it is On the other hand, of course, this impedes performance to some degree (usually not much). .NET alleviates this by making an exception for certain cases. In loops like the one above, where the each value from [0] to [length-1] is being accessed, the check is ommitted, and the code run as fast as if it were an unmanaged language. But this optimization can't be performed if | |||||
feedback
|
|
I've caught myself a few times writing my getter and setter properties in C# incorrectly by referencing the name of the property in the get {} set {} blocks instead of the actual variable. Doing this causes an infinite loop due to the self-referential calls and eventually a StackoverflowException. Example (Incorrect)
| |||||||||||||||||
feedback
|
|
1 - Some of us don't use using. Use using where ever possible
2 - Forgetting to check if something is null, instead of trying to catch a null condition when an exception occurs
3- Forgetting to check for null after a runtime type cast
4- Where ever you are allocating something in try block, make sure you've a finally block to release stuff. | |||||||||||||
feedback
|
|
Violating standards or conventions without knowing why they are there, or worse, refuse to even acknowledge their value. It makes their code hard to read, hard to re-use. | |||||||||
feedback
|
|
I am sure that I have more. These are more like my current "Top Pet Peeves":
| |||||||||
feedback
|
|
A common error when trying to create a central exception handler on Windows Forms:
You should use this for the behaviour you want:
| ||||
|
feedback
|
|
Locking on | |||||||||
feedback
|
|
Checking a string variable if it is assigned. String object can be null so; Wrong!,
Correct,
| |||||||||||||
feedback
|
|
One of the most dangerous pitfalls: Creating a temp object, using its events by utilizing AddHandler (in VB) and then forgetting to remove those handlers. One would think that the object is collected by Garbage Collector when it goes out of scope, but it won't since there is still a pointer to that object (a function pointer) and GC won't clean it up. You will also notice that the event handler hits many times. Once for every object you've created, used its events, and forgot to remove it. In addition to memory problems, this would cause your app to run slower and slower while it is working because the code in your handler would execute multiple times. Just realized this problem because of performance issues of my app. | ||||
|
feedback
|
This is not necessarily a mistake. If you know the file ought to exist (e.g. a configuration file, or a file name obtained using an OpenFileDialog), it's often perfectly OK to just go ahead and open it, and let any exception propagate. And checking for existence doesn't guarantee it will still exist when you try to open it. It may make sense to check if you're opening a file in the presentation tier - where you can, for example tell the user the file doesn't exist. But in the business tier, what are you going to do if the expected file doesn't exist?
| |||||||||
feedback
|
|
Use FxCop to pick up on common coding mistakes. Some of the things it picks up on are a bit trivial, but it has helped us pick up a number of bugs which might otherwise have been missed. Run it from Visual Studio, Analyze->Run Code Analysis for ..., or be really good and set it up to run every time you do a build in the Code Analysis section of the project properties. | ||||
|
feedback
|
|
Change the name of a property without carefully checking if it is used in data binding. Properties are used for databinding. Unfortunately the binding mechanism in Windows Forms and WPF use the property name as string. If you change the name of a property, you will not get any compiler error or warning, only a runtime error if you are lucky. | |||||||||
feedback
|
|
Use generics collections (List<T>) instead of ArrayList so that you can maintain type safety. re:using
| |||||||||||||
feedback
|