vote up 176 vote down star
315

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

vote up 42 vote down

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.

link|flag
show 3 more comments
vote up 15 vote down

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.

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

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 using statement, providing at least minimal support for this idea, though there is more they could do. But the usefulness of RAII is still not widely grasped. It's sort of true to say it cleans up "unmanaged resources", but think about what that means: anything other than memory. Think of all the places in your code where you modify state, and later want to put it back again.

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:

undoSystem.BeginTransaction();

// do stuff, add several undo actions to undoSystem

undoSystem.EndTransaction().

The point is, EndTransaction MUST be called, however we exit the function, to restore the system to the state we found it in. You should at least use try/finally - but why not follow a pattern consistent with the language? Make BeginTransaction return an object:

public class UndoTransaction : IDisposable
{
    public void Dispose()
    {
        // equivalent to EndTransaction
    }
}

Now the application code can just do this:

using (undoSystem.BeginTransaction())
{
    // do stuff, add several undo actions to undoSystem
}

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 UndoTransaction to have a finalizer as well? Absolutely NOT. Finalizers cannot safely call on to managed objects, and they run in a different thread. The one thing they are useful for (calling an interop API to dispose of a Win32 handle) is now done much more easily by using SafeHandle.

Unfortunately the internet and older books are riddled with advice about how IDisposable implies the need for a finalizer. Ignore them. And also not really explaining the implications of "unmanaged resources" - anything about the state of your program can be regarded as an "unmanaged resource". By taking advantage of IDisposable/using, you can apply a consistent coding style to deal with states that change in line with the method call stack. Which brings us to...

2. Exception Safety.

There are some operations that do not throw. Assignment cannot be redefined in C#, so:

x = y;

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 Exception itself:

try
{
    funkyObect.GetFunky();
}
catch (SocketException x)
{

}

How do you know that GetFunky throws SocketException? Either documentation, or trial and error. What if the author of that method later changes it so it doesn't use sockets, so it throws something else? Now you're catching the wrong thing. No warning from the compiler.

Compare with this cautionary tale:

IEnumerable<int> sequenceInts = funkyObject.GetInts();

// I found out in the debugger that it's really a list:
List<int> listInts = (List<int>)sequenceInts;

Very clever, until the author of GetInts changes it to use yield return instead of returning List<int>.

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:

try
{
    // do all kinds of weird stuff with sockets, databases, web services etc.
}
catch (Exception x) // but see note below
{
    throw new FunkyException("Something descriptive", x);
}

I call this normalizing the exceptions. Note that by passing x into the constructor of FunkyException, we cause it to become the InnerException. This preserves complete stack trace information for logging/debugging purposes. Also note that this contradicts the advice given by several other answers to this question (including the highest rated answer), and also many blog posts on this subject. But there it is; I think those people are dead wrong. Exceptions are part of the visible interface of a method, and it is just as important to control that aspect of the interface as it is to specify the type of the parameters and return values.

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 Exception - wherever you need to in order to ensure the exception safety of your program's state. That way, you are not becoming dependent on undocumented or coincidental facts about the internals of other modules.

But...

Unfortunately catching (Exception x) is a really bad idea until CLR 4.0 comes along. Even then, it still won't be ideal, though not as bad as it is today. And yet, it has long been advised by the Exception Handling block of Microsoft's Enterprise Library!

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 Dispose/finalizers used to be wrong but has since been corrected, so that now I'm in agreement with the majority opinion (but at the same time this demonstrates that majority opinion can be wrong at any given time). And the technique of wrapping exceptions is widely used by libraries from Microsoft and 3rd parties. The InnerException property was added for precisely this purpose - why else would it be there?

"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 using statement. The two things are semantically identical. This is why there is a rich history of solid practise in C++ that is directly applicable to C#, which the community can only benefit from learning about.

"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 try/finally, because we can make commit require an explicit call but make rollback be the default, ensure that it always happens if there is not a commit:

using (var transaction = undoSystem.BeginTransaction())
{
    // perform multiple steps...

    // only if we get here without throwing do we commit:
    transaction.Commit();
}

The Commit method stops the rollback from happening on Dispose. Not having to handle both kinds of exit explicitly means that I remove a bit of noise from my code, and I automatically guarantee from the moment I start the transaction that exactly one of rollback and commit will occur by the time I exit the using block.

Case Study: Iterators

The IEnumerable<T> interface inherits IDisposable. If the implementation needs to do something interesting in its Dispose method, does that imply that it should also have a finalizer, to protect itself from users who do not call Dispose?

For an example, look at the most widely used (in modern C#) way of implementing IEnumerable<T>.

When you write an iterator (a function returning IEnumerable<T> and utilizing yield return or yield break), the compiler writes a class for you which takes care of implementing IEnumerable<T>. It does do something important in its Dispose, and yet it does not have a finalizer.

The reason is simple. The Dispose method executes any outstanding finally blocks in the iterator code. The language implementors realised that it would be better for the finally block to never run than for it to run on the finalizer thread. This would have required anything called from finally blocks in iterators to be thread safe!

Fortunately, most clients of IEnumerable<T> use foreach, which works exactly like a using statement - it calls Dispose for you. But that still leaves the cases where the client needs to directly control the enumeration. They have to remember to call Dispose. In the event that they don't, a finalizer cannot be assumed to be a safe fallback. So the compiler does not attempt to solve this problem by adding a finalizer.

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 using/IDisposable was added to the language - to provide a purely deterministic cleanup pattern - and why it is useful in its own right in situations where a finalizer would be the wrong choice.

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.

link|flag
1  
+1, got to say I recall the lobbying about adding idispose, the hassle from the MS boys who thought a GC was the answer to all resource problems was an eye-opener. I'm not sure they quite get it today. – gbjbaanb Dec 20 '08 at 16:09
1  
IDisposable is not RAII. The using statement, as convenient as it is, is not meant as a generic scope guard. The D language has a very handy scope(exit) statement (as well as scope(success) and scope(failure)), but C# is neither D nor C++. C# doesn't have scope guard statements (except for (cont.) – P Daddy Dec 20 '08 at 18:08
1  
... but you could document that "all bets are off" when it comes to exceptions thrown by your method. I increasingly believe that there should only be two exception types that a 'catch' can specify: Fatal and Recoverable. – Earwicker Jan 23 at 10:27
show 57 more comments
vote up 4 vote down

One common mistake is using

if (obj is SomeType) {
  ((SomeType)obj).SomeMethod();
}

instead of

SomeType tempVar = obj as SomeType;
if (tempVar != null) {
  tempVar.SomeMethod();
}

The latter does not double the cast (which does occur in the first snippet and means a slight perfomance hit).

link|flag
1  
The corollary to this is SomeType tempVar = obj as SomeType; tempVar.CallMethodAssumingNotNull(); – Cameron MacFarland Dec 21 '08 at 0:47
8  
Downvoted: In a loop of 10 million times it was 10 milliseconds slower. I'd rather go for the 2 lines of code that don't need a local variable. – Peter Morris Feb 9 at 17:06
show 3 more comments
vote up 5 vote down
  • Serializing huge amounts of data to the Viewstate in ASP.NET. Things like storing a serialized User object in the Viewstate rather than just using a session properly.
  • Including an entire, massive, Viewstate crushing toolkit just to add an "are you sure?" prompt or a tooltip.
  • Being afraid to use lightweight toolkits that don't specifically target ASP.NET, such as JQuery or Prototype. (note: JQuery is now being adopted by Microsoft as the premiere client side toolkit for ASP.NET MVC).
link|flag
vote up 2 vote down

Also don't forget all the common code smells:

http://en.wikipedia.org/wiki/Code_smell

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

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:

  1. Create a class library project, call it ConstantLibrary
  2. Create a WinForms project, call it ConstantDependent
  3. Let’s imagine for a moment that we’re going to program World of Warcraft all over again. :-)

Those who play WOW know that the maximum attainable player level used to be 60. So let’s create a PlayerLimits class in ConstantLibrary

namespace ConstantExample
{
    public class PlayerLimits
    {
        public const int MaxLevel = 60;
    }
}

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

private void btnMaxLevel_Click(object sender, EventArgs e)
{
    this.lblMaxLevel.Text = PlayerLimits.MaxLevel.ToString();
}

Build and run the solution. When you click the button, 60 appear. Now,

  1. Go back and adjust PlayerLimits.MaxLevel = 70, the new level limit introduced in The Burning Crusade expansion.
  2. Build only the ConstantExample project, and copy its new assembly to ConstantDependent’s bin/Debug directory to overwrite the old assembly.
  3. Run the ConstantDependent.exe that is directly there; make sure you did not recompile it.
  4. Go ahead and press the button again.

It remains at 60. Oops. What is happening here?

  1. Launch MSIL DASM, the disassembler supplied with the .NET Framework SDK.
  2. Load ConstantDependent.exe into it.
  3. Look for method btnMaxLevel_Click and open it up, and look at the line with the ldc instruction to load an integer value onto the stack.

To be specific, it would be IL_0007 in the sample below.

.method private hidebysig instance void btnMaxLevel_Click(object sender, class [mscorlib]System.EventArgs e) cil managed

{

  // Code size       24 (0x18)

  .maxstack  2

  .locals init ([0] int32 CS$0$0000)

IL_0000:  nop

IL_0001:  ldarg.0

IL_0002:  ldfld      class [System.Windows.Forms]System.Windows.Forms.Label ConstantExample.Form1::lblMaxLevel

IL_0007:  ldc.i4.s   60

IL_0009:  stloc.0

IL_000a:  ldloca.s   CS$0$0000

IL_000c:  call       instance string [mscorlib]System.Int32::ToString()

IL_0011:  callvirt   instance void [System.Windows.Forms System.Windows.Forms.Control::set_Text(string)

IL_0016:  nop

IL_0017:  ret

} // end of method Form1::btnMaxLevel_Click

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.

public class RaidLimits
{
    public static readonly int MaxPlayers = 25;
}
link|flag
4  
+1 for very informative and good investigated answer. – BeowulfOF Jan 3 '09 at 18:08
show 4 more comments
vote up 8 vote down

Not testing!!! This is the biggest mistake I made in the past. Glad I'm finally turning around. Due to testing my code is better, more logical and all of it is being made easier to maintain. Also, I noticed my speed in development went up as well. Not testing is the biggest mistake you can make imo ...

link|flag
vote up 1 vote down
  • Using string literals repeatedly instead of string constants.

  • Accessing a single list item repeatedly instead of getting it once and assigning it to a local variable.

  • Using less efficient string comparisons like string1==string2 instead of more efficient ones like string.Equals, StringComparer.

  • Always making classes and methods public even for those that should be internal to a library or a class.

link|flag
1  
String.Equals is not much faster unless you are doing it loads, and it doesnt read as well. Premature optimization! – Tim Jul 15 at 22:55
vote up 2 vote down
Assert.AreEqual(0, resultOfCalculation);

Comparisons with 0 aren't a good way to go, especially in engineering - in a complex calculation, the end result might diverge by at least double.Epsilon and typically a lot more due to all sorts of precision loss.

This is why some test frameworks overload the AreEqual() method, allowing the user to specify tolerance values:

Assert.AreEqual(expectedResult, actualResult, tolerance);
link|flag
1  
There's a Assert.AreEqual for floating point numbers, that take a tolerance. Use that if you must compare non integers in a test. – Brian Rasmussen Feb 9 at 17:30
1  
0 is an integer. It is reasonable to assert that an integer variable is zero. Did you mean 0.0? – finnw Aug 1 at 14:32
show 2 more comments
vote up 2 vote down

Not quite a language thing, and perhaps arguably a "mistake" but...Deploying web-based apps without using HTTP Compression (GZip, Deflate, etc.) There rarely a good reason why you should not use HTTP Compression...

Also, not checking Page.IsValid() to ensure server side validation is done.

link|flag
vote up 11 vote down

Putting bad execution code in Get accessors

If you have code that modifies an objects state in its Get accessor, then examining that property in the debugger, which causes the code to execute, can alter the state of your object.

For instance, if you have the following code in a class...

private bool myFlag = false;
public string myString
{
  get
  {
    myFlag = true;
    return "test";
  }
}

The first time you run into this in the Debugger, myFlag will show as having a value of false, and myString will show as having a value of "test". If you hover over myFlag, however, you will see that its value is now true. The debugger's display of the property value has changed the state of your object.

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

Adding threads to an app without knowing the basics of writing threaded apps.

link|flag
vote up 8 vote down

Your class doesn't need a Finalizer just because it implements IDisposable!

You can implement IDisposable to give your class the ability to call Dispose on any owned composite instances, but a finalizer should only be implemented on a class that directly owns unmanaged resources.

Any compositely owned instances that own unmanaged resources will have their own finalizers.

link|flag
vote up 31 vote down

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.

link|flag
5  
If you're overrun with a particular warning that you don't plan to fix each instance of, you can disable it in the project settings. (Example: Warning 1591, undocumented public or protected method. Unless you're creating a reusable library to sell, you may not want to, nor have time to, document all those.) Go to the Build tab of your project properties, and in the Suppress warnings box, type the number of each warning you want to ignore, like this: 1591 1867 1883 This can help you reduce warning noise and see only the most essential warnings. – Kyralessa Jun 11 at 4:06
vote up 3 vote down

In many cases I've seen this scenario:

IDbConnection conn = null;

try
{
    conn = new SqlConnection("SomeConnString");
    conn.Open();
}
finally
{
    // What if the constructor failed?
    conn.Close();
}

If an exception originated in the constructor of SqlConnection class, the variable would never be assigned, which will cause a System.NullReferenceException in the finally in the Close method never being called, resulting in a memory leak.

Generally, it is always a good idea to be as defensive as possible in the catch and finally blocks, since that code is critical and simply can't fail:

IDbConnection conn = null;

try
{
    conn = new SqlConnection("SomeConnString");
    conn.Open();
}
finally
{
    if (conn != null)
    {
        conn.Close();
    }
}
link|flag
3  
Better still, use a Using statement to ensure the connection is both closed and disposed. – Dan Diplo Aug 21 at 20:20
vote up 3 vote down

I would say mine are more general, as I deal with good architecture more than coding nick nacks:

  1. Applications are logic, not UI. You are building an insurance application, not an ASP.NET application.
  2. Putting anything other than UI logic in the UI layer. This makes for very inflexible applications that have to remain a certain type.
  3. 0% Code Coverage with tests. Big pet peeve. I know development is an art and a science but that means you have to have at least SOME science.
  4. Belief that small apps do not require design. Small apps routinely become large apps.

String concatenation, already mentioned, is a big no no for me. Another is try ... catch. If you are not catching, use try finally. Just as a hands up for noobs, these are functionally equivalent:

using(SqlConnection conn = new SqlConnection(connString))
{
    conn.Open();
}

AND

try
{
   conn.Open();
}
finally
{
    conn.Dispose();
}

One big one I have seen over and over again, with ASP.NET, is writing ASP.NET like ASP. The same can be said for VB.NET devs who moved over from VB. Binding = good; looping to Response stream = bad.

What else>? Oh, you can run through almost any sample on the web and see some pretty bad examples of proper architecture. I do not denigrate the writers, as they are not there to illustrate architecture, but to show how to solve one problem, but still ...

link|flag
show 1 more comment
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
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

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

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

Your Answer

Get an OpenID
or

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