vote up 173 vote down star
310

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
18  
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

77 Answers

1 2 3 next
vote up 0 vote down

Making sure to understand that strings are immutable in .NET.

So, whenever you do any operation on a string you get back a new string with the operation applied to the new string.

So if you have a lot of operations in a loop ( say appending values to a string ), it is instead recommended to use the StringBuilder object.

link|flag
vote up 0 vote down

Handling ThreadAbortException:

try
{
}
catch(ThreadAbortException ex)
{
}

It's hard (if not impossible) to write code that will always handle a ThreadAbortException gracefully. The exception can occur in the middle of whatever the thread happens to be doing, so some situations can be hard to handle.

For example, the exception can occur after you have created a FileStream object, but before the reference is assigned to a variable. That means that you have an object that should be disposed, but the only reference to it is lost on the stack somewhere...

Finding an alternative is going to save you a lot of time and headache's down the line.

link|flag
vote up 0 vote down

well, I went through all the answers, and they're all very important things to look out for, but I think the number one mistake of programmer is not documenting their code!!

it's not really a pure coding issue, but nevertheless I believe it is a most basic skill.

everyone makes mistakes, all of us write bugs. that's all human. but not commenting on your code, thereby making life easier on yourself, and more importantly for your fellow developer that will need to debug your code after you moved on, is the worst thing IMHO.

also, not using common design patterns (everyone knows singleton, but strategy, adapter, decorator, etc...), or not even knowing them, is something I see quite often.

link|flag
vote up 0 vote down

Not using Events, as a developer that came across from C++ (many years ago) I found that I programmed C++ in .NET instead of using the built in functionality.

In on of my first .NET project I've implemented the observer pattern using interface and inheritance instead of simply using events.

link|flag
vote up 5 vote down

Checking a string variable if it is assigned. String object can be null so;

wrong!

if(someStringVariable.length > 0) {
    //do you always can get this far?
}

correct

if(!String.IsNullOrEmpty(someStringVariable)) {
    //yeah! this one is better!
}
link|flag
show 1 more comment
vote up 1 vote down

Risky code in the constructor. When I have to initialize an object with risky code (I. E. loading from XML), I usually have an Initialize() or Load() method, so I don't do it in the constructor, which can leave the object in an "incomplete" state. So instead of

try
{
    MyObject o = new MyObject();
}
catch(Exception ex)
{
    // handle exception
}

I do this:

MyObject o = new MyObject();

try
{
    o.Initialize();
}
catch(Exception ex)
{
    // handle exception
}
link|flag
vote up 1 vote down

Boxing/Unboxing is one of the common oversights of new developers. This was a more serious problem in the early days of .Net (before generics) but it is still quite easy to create innocent-looking code which is massively unefficient due to implicit boxing/unboxing.

link|flag
vote up 1 vote down

Similar to this one, when defining a property

...
private string _MyString;
public string MyString
{
  get
  {
    return MyString; //ATTENTION
  }

  set
  {
    ...
  }
}

At runtime this gives a nice crash. Of course this should be written as

private string _MyString;
public string MyString
{
  get
  {
    return _MyString;
  }

  set
  {
    ...
  }
}
link|flag
show 2 more comments
vote up 4 vote down
public DateTime IncrementDateByOneDay(DateTime date)
{
   DateTime result = date;
   result.AddDays(1); //ATTENTION
   return result;
}

This did not change "result". Correct version:

public DateTime IncrementDateByOneDay(DateTime date)
{
   DateTime result = date;
   result = result.AddDays(1);
   return result;
}

This is just an example of course. I found such bugs already inside other methods and it's really hard to find since it seems to be correct by just running over it.

link|flag
2  
This should have been written as a simple one-liner to begin with: return date.AddDays(1); . Not more needed and much less error prone. – Alex Oct 7 at 6:37
show 2 more comments
vote up 0 vote down

not catching any errors at all, or handling them wrong. I know some guys who will write whole programs and not catch any errors, then wonder why the s*** crashes. Maybe the bigger mistake is not knowing your development language thoroughly enough.

link|flag
vote up 0 vote down

One of the worst thing even the experience programmers also doin is assigning db null values to variables without verifying it

-- missing db null verifications

always perform a check on db ops

(drOutput[iMainIdentifier] != Convert.DBNull) ? drOutput[iMainIdentifier].ToString() : null;

--Accessing the fields in nulled object without checking

--calling the nulled object without initializing it

--in ui apps, using non ui thread to update the UI

--using unavailable column names in the datareader getordinal() methods

--missing breaks in case staments..

--break ur loops carefully. there are scenarios we are looking for a specific item within a loop for further processing and letting the loop continue even the specified item already identified..

link|flag
vote up 1 vote down

One horrible pitfall is a method calling itself when you meant to call an overload eg.

	public static void MyMethod(int id, bool always, string filter)
	{
		// Do something
	}

	public static void MyMethod(int id, bool always)
	{
		MyMethod(id, always); // Ouch!
	}

	public static void MyMethod(int id)
	{
		MyMethod(id, false, null);
	}
link|flag
vote up 4 vote down

Similar to this answer, but using String.Format.. It helps readability a lot..

Instead of this..

Console.WriteLine("A: " + 9 + "\nB: " + 34 + "\nC: " + someInt);

Use..

Console.WriteLine("A: {0}\nB: {1}\nC: {2}", 9, 34, someInt);
link|flag
show 3 more comments
vote up 4 vote down

I've run into a lot of code that doesn't make use of the TryParse functions in classes (like int.TryParse). It makes the code look a little neater and returns a bool result instead of throwing an exception in which you will have to try to catch.

link|flag
vote up 4 vote down

Modifying a collection by iterating the collection

Contrived code sample:

List<int> myItems = new List<int>{20,25,9,14,50};

foreach(int item in myItems)
{
   if (item < 10)
   {
      myItems.Remove(item); 
   }
}

If you run this code you'll get an exception thrown as soon as it loops around for the next item in the collection

The correct solution is to use a second list to hold the items you want to delete then
iterate that list i.e

List<int> myItems = new List<int>{20,25,9,14,50};
List<int> toRemove = new List<int>();

foreach(int item in myItems)
{
   if (item < 10)
   {
        toRemove.Add(item);         
   }
}

foreach(int item in toRemove)
{
     myItems.Remove(item);
}

Or if you're using C# 3.0 you can use the List.RemoveAll like this

myInts.RemoveAll(item => (item < 10));
link|flag
show 4 more comments
vote up 1 vote down

Check out this book: Framework Design Guidelines

it contains a lot of DOs and DO NOTs

link|flag
show 1 more comment
vote up 1 vote down

This one sometimes gets us: in Linq, using First() instead of FirstOrDefault() on a IEnumerable that may be empty. Sometimes, it seems intuitive that First would return a null, rather than what it does with the exception throwing.

link|flag
vote up 2 vote down

Failing to synchronize to the GUI thread from a different thread causing "Cross-Thread Operation not valid" Exception

How to resolve

link|flag
vote up 7 vote down

Forgetting that exception catch blocks are matched in the order defined and that more general exceptions will supersede more specific ones.

try
{
  // some code that may throw...
}
catch( Exception x )
{
  // catches all exceptions...
}
catch( NullReferenceException x )
{
  // never reached because catch( Exception x ) is more general...
}

Resharper and FxCop can help avoid this error.

link|flag
vote up 3 vote down

Not writing defensive code that checks for nulls.

MyClass t = GetAnInstance();
t.SomeMetehodCall(); // may throw NullReferenceEx

// or worse...

SomeOtherFunction( t ); // may also throw NullReferenceEx

Debugging NullReferenceExceptions can be a frustrating time-killer in .NET development.

link|flag
vote up 7 vote down

Forgetting this:

DBNull.Value != null

From MSDN,

Do not confuse the notion of a null reference (Nothing in Visual Basic) in an object-oriented programming language with a DBNull object. In an object-oriented programming language, a null reference (Nothing in Visual Basic) means the absence of a reference to an object. DBNull represents an uninitialized variant or nonexistent database column.

The common mistake isn't necessarily thinking that DBNull.Value is a null reference. I think it's more common to forget that your DataTable or other database-sourced object contains DBNulls rather than null references.

link|flag
vote up 1 vote down

Here is a good set of guidelines and best practices from Juval Lowy (founder of IDesign).

Most of them are presented as facts without justifications, but answers can be found in his book "Programming .NET components".

Although some statements can be considered as too strict and arguable I think it's worthwhile for everyone to run through his list and think about them.

link|flag
vote up 7 vote down

I always get annoyed when I see these in web forms:

try
{
  int result = int.Parse(Request.QueryString["pageid"]);
}
catch
{...

Instead of using

int result;
if (!int.TryParse(Request.QueryString["pageid"] , out result))
{
    throw new ArgumentException.... 
}
link|flag
vote up 2 vote down

I saw this one before: a programmer is assigned a 'feature' that results in an exception being thrown inside a catch. He proceeds by implementing another catch, that does nothing:

Original code:

try
{
    // Do something
    // Cause an exception
}
catch(Exception e)
{
   Logger.Log(e.Message); // throws
}

Fixed code:

try
{
    // Do something
    // Cause an exception
}
catch(Exception e)
{
   try
   {
   Logger.Log(e.Message); // throws
   }
   catch { }
}

We never saw the bug again, until customer looked at the final product. Need I say more.

link|flag
2  
From what I've seen, it's pretty common practice to ignore errors that occur during error logging. Why is this bad? How should the situation be handled instead? – Sander Jul 22 at 12:29
show 1 more comment
vote up 3 vote down

Not using flagged enum, where actually we need to.

 public enum Hobby {
    None,
    Reading,
    Cooking,
    Cricket,
    All   
    }

 public class Student {
      public List<Hobbies> Hobbies{get;set;} 
//Bad: we have to make it a collection, since one student may have more than one hobby.
    }

Better Idea.

[Flag]
public enum Hobby {
None=0,
Reading=1,
Cooking=2,
Cricket=4,
All=7   
}
public class Student {
  public Hobby Hobby {get;set;}; 
//Now, we can assign multiple values to it, eg: student.Hobby= Hobby.Reading | Hobby.Cooking;
}

For more info: http://msdn.microsoft.com/en-us/library/cc138362.aspx

link|flag
show 7 more comments
vote up 7 vote down

I am a C++ programmer and there was a time when started to code in C# without doing any reading on the language, here are some of the mistakes I did.

Writing a method that write\read your object state to a file instead of using XML (or binary) serializers.

Applying the observer pattern instead of using the built in Events.

Applying the Iterator pattern instead of using enumerators and the IEnumerable interface.

Writing a clone method to classes without implementing the IClonable interface.

Not using the "Using" keyword on IDisposable objects.

Some realy strange things with strings which I can't recall now. (Strings in C# work a bit different then c++)

link|flag
vote up 12 vote down

A common error when trying to create a central exception handler on winforms:

try 
{
   Application.Run(someForm)
} 
catch (Exception ex) 
{
   //this won't catch your winforms exceptions
   //(even if inside visual studio it does)
}

You should use this for the behaviour you want:

// Add the event handler for handling UI thread exceptions to the event.
Application.ThreadException += someThreadExceptionEventHandler;

// Set the unhandled exception mode to force all Windows Forms errors to go through
// our handler.
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
link|flag
vote up 6 vote down

Calling GC.Collect().

It is a rare case when we need to interfere with the Garbage Collector work.

link|flag
show 1 more comment
vote up 25 vote down

If you know in advance the size of collection you are about to fill, reserve the space when creating your collection.

List<Person> persons = new List<Person>(listBox.Items.Count); // Reserve
foreach (ListBoxItem lbi in listBox.Items)
{
    persons.Add(lbi.Tag as Person); // No reallocation
}

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 AddRange instead of a sequence of Add. This is especially true with observed collections like the Items collection on a ListView.

foreach (string line in File.ReadAllLines(fileName))
{
    // Not the best: there might be overhead when the collection changes
    // and multiple reallocations 
    listBox.Items.Add(line);
}

// Much faster: Single call, minimal overhead, and only one 
// potential reallocation
listBox.Items.AddRange(File.ReadAllLines(fileName));
link|flag
1  
(Agreed on the AddRange, though, which in WinForms is often essential to keep your app from slowing to a crawl.) – Kyralessa Jun 11 at 4:08
1  
It remember after I introduced a Reserve(), it did improve my performance a lot according to dotTrace (a .NET profiler). But it was for a specific example where the collection was huge (over 100,000 items). As your collection grows very large, the cost of resizing the array (e.g. reallocating it and copying all elements to the new one) becomes bigger and bigger. So if you expect a collection to be very large, and you know the size in advanced, its worth using Reserve. If you have a small array with under 100 items, you probably wont notice a difference. – Anthony Brien Jun 12 at 20:26
show 3 more comments
vote up 6 vote down

I saw this one recently...

public void MyMethod()
{
    if (this == null) 
    {
       // some kind of bizarre error handling...
    }
    ....
}

He insisted that you should always check if what you're trying to look at is null before using it. My claim that you couldn't actually be in this method if "this" was null fell on deaf ears.

link|flag
show 3 more comments
1 2 3 next

Your Answer

Get an OpenID
or

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