vote up 172 vote down star
306

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.

Please look in to the list before posting new


Please justify your answer as well, if applicable and give examples.

flag
8  
Why does this need to be wiki? If it's about programming and it's helpful, why shouldn't the OP get rep for it? Don't lean on people to make stuff wiki without giving a reason. – Bill the Lizard Dec 19 '08 at 18:02
2  
I'm with Bill, this was a good question, wish I had thought of it :D – DrG Dec 19 '08 at 20:38
1  
Another in agreement with Bill. Earning rep isn't a bad thing, guys. – Electrons_Ahoy Dec 19 '08 at 23:08
1  
What is the criteria to decide whether a question should be put in Wiki category or not? – amazedsaint Dec 20 '08 at 9:57
17  
FWIW, non-questions - that is, posts designed to elicit responses from every reader with no criteria by which it might be considered answered - should be CW from the start to reduce the temptation for posting duplicate responses and avoid the appearance of rep-whoring. This is a classic example. – Shog9 Dec 22 '08 at 18:15
show 12 more comments

75 Answers

prev 1 2 3
vote up 11 vote down

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.

link|flag
5  
shhh .. we're all supposed to believe in the dynamic language propaganda and eschew any nonsense about compiler errors. :) – BobbyShaftoe Dec 20 '08 at 4:26
show 5 more comments
vote up 12 vote down

Raising an event without first checking if it's null: ie:

public event EventHandler SomethingHappened;

private void OnSomethingHappened()
{
   SomethingHappened(this,new EventArgs()); //if no one hooked up to this event, it'll blow up
}
link|flag
3  
I'm lazy, so I write: public event EventHandler SomethingHappened = delegate{}; There, now something is always hooked up to it! – Joe Dec 19 '08 at 21:32
2  
Joe, as I understand it, that's not a guarantee, because code elsewhere can explicitly set SomethingHappened = null, blowing away your empty delegate. – Kyralessa Jun 11 at 4:13
1  
The performance does not really matter for = delegate{}; (see mafutrct.wordpress.com/2009/07/…). IIRC, setting it = null explicitly is impossible at all. – mafutrct Jul 17 at 10:22
show 2 more comments
vote up 24 vote down

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.

link|flag
show 2 more comments
vote up 21 vote down

Locking on this is always a nice one. Not immediately fatal but a good way to get deadlocks.

link|flag
show 9 more comments
vote up 74 vote down

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.

link|flag
1  
+1 because I got stung by this. – geofftnz Mar 12 at 1:40
show 7 more comments
vote up 68 vote down

Use this cast:

Tree tree = obj as Tree;

... 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:

Tree tree = (Tree)ojb;

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:

Tree tree = obj as Tree;
tree.GrowBranch();   // Bad. Possible NullReference exception!

In this case, the programmer meant one of these:

// Expected obj always to be a tree
Tree tree = (Tree)obj;
tree.GrowBranch();

// Expected obj could be a tree or could be something else
Tree tree = obj as Tree;
if( tree != null )
{
    tree.GrowBranch();
}

Some people believe that...

Tree tree = (Tree)obj;

...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:

  • When the real cause of the problem was not a null reference, it was an invalid cast.
  • Some time after the real problem (the bad cast) occurred.

These two reasons make it more difficult to debug and determine what the real problem was.

The performance if these two types of cast is similar. It is true that a (TargetType) style class 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:

Tree tree = obj as Tree;
if( tree != null )
{
    tree.GrowBranch();
}

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:

if( thisComputersPowerHasFailed )
{
    SendEmailToAdministratorToSaySomethingHasGoneWrong();
}

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.

link|flag
6  
totally agree. the direct cast shows a programmer assertion and gives a more understandable exception on error. – TheSoftwareJedi Dec 19 '08 at 13:28
1  
-1, cause obj as Tree is much faster, even including the necessary if(obj != null). On failing this is faster although since exception raising costs really much time. – BeowulfOF Dec 19 '08 at 14:21
6  
BeowulfOF - this is a myth. "obj as Tree" is not much faster if the cast succeeds (only if the cast fails and you save throwing an exception). – Joe Dec 19 '08 at 15:45
3  
I agree with Scott here +1 .. When you do a as you always risk passing around a null object that may rise a NullPointer later on (masking where that null came from). Use "as" if you expect nulls as ok input, but if the null is an exception to you, let it throw one! – Tigraine Dec 20 '08 at 2:29
2  
@Martin. I agree with you entirely. In the answer, I said an 'as' cast is perfectly acceptable for the type of situation you've described. I did not say never use the 'as' cast, which is what a lot of people seem to think is what I said. Maybe I'll edit the answer to make that clearer. – Scott Langham Jun 21 at 20:42
show 14 more comments
vote up 69 vote down

Deploying your ASP.NET applications to production with Debug="true" set in the web.config. The compiler can't do any optimizations, and batch build is disabled. When we used to debug performance problems, this was one main area we'd look at. Tess has a great article on it.

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:

!finddebugtrue

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.

link|flag
1  
+1 because I do that too often... – Andy May Dec 19 '08 at 22:12
3  
Dario - You can still output PDBs even with debug turned off. For any production application, you really should never deploy with Debug=true. There are much better ways to troubleshoot your apps without taking the performance hit. – Cory Foy Feb 26 at 17:50
12  
System admins should really add this to machine.config on production/live servers: <System.Web> <deployment retail="true" /> </System.Web> This over-rides any debug="true" settings in web.config – Dan Diplo Jul 22 at 11:42
show 3 more comments
vote up 5 vote down
  • Using View State instead of Control State. View State saves everything, where as control state saves only the information needed to operate the statefull control on the statelessweb enviernment.
  • Not using paterns such as MVP in order to reduce coupling.
  • Having too much logic in the view instead of the domain objects.
link|flag
vote up 104 vote down

not using a using statement to ensure that Dispose() is called.

link|flag
5  
This is very important for Dialogs as they are not normally disposed of by the garbage collector. – Chris Porter Dec 19 '08 at 22:15
2  
I'm not sure how preferring "using" over calling "dispose" is necessarily much better or will necessarily solve the problem. Don't get me wrong "using" is good practice.. but if you are going to forget to dispose of something, aren't you likely to forget the "using" block anyway? – BobbyShaftoe Dec 20 '08 at 3:40
show 4 more comments
vote up 36 vote down

I am sure that I have more. These are more like my current "Top Pet Peeves":

  • Not properly disposing of disposable resources. The using() keyword should be used with every object that implements IDisposable. Considering the code compiles to the equivalent of a try / finally that properly disposes of the object provides cleaner and safer code.

  • Catching Exception instead of a specific exception. Not only that, but seeing code where every single method has the entire body inside of a big try / catch. You should only ever catch exceptions that you can handle and are expecting. Add a top level handler to catch unhandled exceptions.

  • Seeing exceptions used to control program flow. If an exception is thrown, it should not be swallowed or used to initiate another set of logic that would not happen for any other reason.

link|flag
show 8 more comments
vote up 33 vote down

1 - Some of us don't use using. Use using where ever possible

using (StreamReader reader=new StreamReader(file)) 
{ 
 //your code here 
}

2 - Forgetting to check if something is null, instead of trying to catch a null condition when an exception occurs

//This might throw an exception
string val=obj.Value.DomeSomething()


//Better, check for null

if (null!=obj.Value)) { 
 // Do your stuff here 
 }

3- Forgetting to check for null after a runtime type cast

   MyType t= x as MyType;
   if (null!=t) { 
      //Do stuff here 
    }

4- Where ever you are allocating something in try block, make sure you've a finally block to release stuff.

link|flag
1  
If obj.value == null, then obj.Value != myval (unless myval == null), so your extra check is unnecessary. Also the if(rhs == lhs) pattern (e.g. null == x, instead of x == null) is unintuitive and unnecessary in C#, since if(x = null) is not valid in C#. – P Daddy Dec 19 '08 at 23:04
show 2 more comments
vote up 231 vote down
throw ex;

Instead of

throw;

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.

throw ex;

Is never right when being used to re-throw an exception.

link|flag
5  
@TheSoftwareJedi - lots of MS and 3rd party libraries do InnerException wrapping, it makes a lot of sense. So you just have to accept it as reality. The flaw lies with the debugger UI for exceptions - it should list all the exception objects conveniently instead of making you dig through the list. – Earwicker Dec 20 '08 at 10:29
5  
Everything You Wanted To Know About Exception Handling but were Afraid to Ask: blogs.msdn.com/cbrumme/archive/… – Mike Scott Dec 20 '08 at 13:02
show 17 more comments
vote up 78 vote down

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:

 try
{
    //something
}
catch
{
    // do nothing
}

Understanding the pitfalls of exception handling took me some effort, but was worth the time I spent on it.

link|flag
1  
Oh yes, I have done my share of abusing it... – Treb Dec 19 '08 at 13:57
3  
I'd appreciate if you elaborate on this one: I use it regularly and would love to know if I must get rid of it. Eg.: try { File.Delete(blah); } catch {} to avoid reporting an unlikely file deletion problem that user will not understand anyway. – Serge - appTranslator Feb 9 at 17:32
1  
@Serge: There are a few conditions where its ok to do so. In general its better to at least log the exception information, so if the program crashes you know where to look for the cause. See stackoverflow.com/questions/313839/… for example. – Treb Feb 10 at 9:20
3  
I have been lobbying the management to make swallowing an exception without even a comment on why it's being swallowed a fireable offense. No luck yet. – James Schek Mar 17 at 0:13
1  
We had a guy that was upset that we would catch exceptions log them (via email or DB call) and then return an error from some of our libs, he wanted us to catch the exception, and then re throw it so another try catch could catch it vs. just checking what is returned – Bob The Janitor Mar 25 at 16:29
show 7 more comments
vote up 118 vote down
link|flag
4  
The only problem with static in a webapp is most web devs don't think in terms of web safety... this can also affect instances of static classes in libraries in web apps that aren't threadsafe. Saw about 4 major weirdness issues related to services w/ unsafe clients used statically. You can cut yourself with a knife, but its hard to be a chef without one. – Tracker1 May 17 at 6:37
show 17 more comments
vote up 12 vote down

never publicly expose generic Lists - and this is why not.

link|flag
1  
Also, use IEnumerable<T> where appropriate (read only collections). It's always best to stick with the lowest interface possible. – TheSoftwareJedi Dec 19 '08 at 12:26
2  
This is nothing specifically to do with generic lists. Non-generic List is no better (obviously worse in most cases), nor is an array. – Earwicker Dec 20 '08 at 10:54
show 5 more comments
prev 1 2 3

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.