vote up 172 vote down star
305

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

vote up 28 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 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 5 vote down

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

link|flag
vote up 10 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 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 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 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 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 27 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 at 18:08
show 4 more comments
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 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 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 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 14 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 39 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 -6 vote down

using leading (or trailing) underscores to denote member data (or anything else)

class HowToMakePeopleHateYou
{
  string _doShit;
  double _likeThis;
}

There are a total of probably 10 people in the world who prefer to read code formatted that way. Chances are, your co-workers will not be among them.

Same goes for Hungarian notation, or any other punctuation meant to imply type or role of a variable.

link|flag
8  
Actually, this is the recommended way of doing things in .NET from most of what I've read. Plus I like the fact it denotes a private field instead of a regular old variable. And it's infinitely better than m_ or Hungarian notation. – Wayne M Jan 3 at 17:52
4  
-1 I prefer the underscore for instance variables. Easier to read. – TheSoftwareJedi Jan 7 at 12:58
1  
I like m_PrivateField because of the capitalization, but I don't mind _privateField. Though naming a private field like a local variable (privateField) or a property (PrivateField) is unreadable and unacceptable as far as I'm concerned. – Allon Aug 22 at 20:08
show 7 more comments
vote up 97 vote down

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:

public void Foo(List<Bar> bars) 
{
  foreach(var b in bars)
  {
    // do something with the bar...
  }
}

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 IEnumerable<Bar>.

This is a lot nicer to the caller:

public void Foo(IEnumerable<Bar> bars) ...

If the method requires to know the count of the bars collection use ICollection<Bar> instead, or maybe you need to access bars by index, then use IList<Bar> but always the least specific sub type needed.

link|flag
21  
On the other hand, methods that take interfaces can be a little harder to figure out how to use. Example is TextRenderer.DrawText, which takes an IDeviceContext as a parameter. Took me a bit to realize that a Graphics object implements IDeviceContext. – MusiGenesis Dec 20 '08 at 16:54
11  
Resharper tells you to do this. – Earwicker Dec 20 '08 at 22:25
3  
Ohh, Harry, if you every do that people will hate you. Actually don't ever use arrays for anything else than local variables (OK, there might be some other cases but that's a good rule of thumb). In this case it's just not needed, use the interface and you can pass an array, a list or something else – Patrik Hägne Feb 22 at 9:33
3  
Agreed in general, MusiGenesis, but not for IEnumerable(T). Essentially every generic collection implements it (even stuff like Stack(T) or Queue(T)), so there's no reason to use anything more derived. – Kyralessa Jun 11 at 3:57
show 3 more comments
vote up 2 vote down

As some have mentioned swallowing exceptions is a really bad habit. Another thing that I see people do all the time that's quite similar to swallowing exceptions is redundant null checks.

Let's say that we have a method that returns an object and we it should never return null a lot of times you'll see this.

var o = this.Foo();
if (o != null)
{
  o.Bar();
}

// more code here...

Really if the method Foo returns null this is exceptional behavior and an exception should be thrown, so either in an else block throw an appropriate exception or just remove the if-statement and allow for the NullReferenceException to be thrown.

link|flag
show 4 more comments
vote up 1 vote down

Unnecessary boxing and unboxing.

link|flag
1  
Sure, one example would be using an ArrayList to store a collection of value types. So if I use an ArrayList to store ints. When I add or remove an integer it must be boxed/unboxed. Clearly this is wasteful. Maybe a bad example but you get the idea. – Tim Merrifield Feb 23 at 14:56
show 3 more comments
vote up 15 vote down

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.

link|flag
vote up 18 vote down

Use generics collections (List<T>) instead of ArrayList so that you can maintain type safety.

re:using
Don't unnecessarily nest using statements do this instead:

 using (SQLconnection conn = new SQLConnection() )
 using (SQLCommand cmd = new SQLCommand("select 1", conn ) // no need to nest
 {
    conn.open()
    using (SqlDatareader dr = cmd.ExecuteReader()) //nessesary nest
    {
      //dr.read()
    }     
 }
link|flag
3  
A lot of style guides would frown on this because the first using isn't using brackets. It's mostly an issue of preference...but I think it's better to have the brackets. – Beska Feb 26 at 21:48
2  
I would still call that nested, even if there are no brackets used. – neilwhitaker1 Mar 9 at 22:57
show 6 more comments
vote up 2 vote down

Setting local objects to null will not free up any resources, so there is usually no reason to do it.

link|flag
1  
This is usually good advice for locals, but often bad advice for members. It often makes logical sense to assign null to a member to indicate that it is restored to its initial state. – Earwicker Dec 20 '08 at 11:00
1  
I agree with Earwicker. Setting objects to null can cause the garbage collector to collect them and free up the used memory resource. I think you've taken that question you've linked slightly out of context and over-generalized it. This answer only applies in some circumstances. – Scott Langham Dec 20 '08 at 14:39
show 2 more comments
vote up 1 vote down
 i = i++;

is not the same as

 i++;

I found a great SO post about this, but this also does a decent job.

It's a dumb thing to do anyway, but the point is that it increments differently from c++.

Ah here is the SO one What’s the difference between X = X++; vs X++;?

link|flag
3  
i++ is more like i = ++i (increment before assign) – jishi Dec 20 '08 at 11:55
vote up 21 vote down

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)

public int Property
{
    get
    {
        return Property;
    }
}
link|flag
2  
+1 for saying Stackoverflow and meaning it :D – DrG Dec 19 '08 at 20:41
3  
Would be nice if the compiler generated warnings for this! – Dan Diplo Jul 22 at 11:56
1  
I think everyone has made this mistake at least once. – chris Jul 28 at 21:19
show 4 more comments
vote up -4 vote down

Avoid thinking you're a Hero and ask those around you for help!

Or doing this:

if ( SomeValue == null )
SomeObject.Value = null;
else
SomeObject.Value = SomeValue;

Instead of this:

SomeObject.Value = SomeValue ?? null;

EDIT: My point is, don't write three lines when one will do.

EDIT, from GordonG:

I think what he meant to say was...

Or doing this:

if ( SomeValue == null )
    SomeObject.Value = OopsSomeValueWasNull;
else
    SomeObject.Value = SomeValue;

Instead of this:

SomeObject.Value = SomeValue ?? OopsSomeValueWasNull;
link|flag
show 4 more comments
vote up 47 vote down

Unnecessary initialization

DataTable foo = new DataTable();  // Initialization unnecessary
foo = FetchDataTableFromDatabase();

better:

DataTable foo = null;
foo = FetchDataTableFromDatabase();

best

DataTable foo = FetchDataTableFromDatabase();
link|flag
12  
Your second case is necessary if your "Fetch" needs to be in a try/catch, and your Foo needs to be declared out of the try/catch scope. In that case you would not be able to use your third case. – devinb Mar 25 at 14:50
5  
best: var foo = FetchDataTableFromDatabase(); – Arnis L. Jun 25 at 11:38
show 3 more comments
vote up 16 vote down

Like, trying to open a file without checking whether it exists ...

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?

  • Throw a FileNotFoundException? In which case you might as well just try to open the file.

  • Throw a custom exception? In which case callers will need to be aware that either your custom exception (for the common case) or a FileNotFoundException (if the file disappears between checking and attempting to open) - which potentially adds complexity.

link|flag
2  
Raymond Chen has written on this issue: blogs.msdn.com/oldnewthing/archive/… – Eclipse Mar 12 at 1:44
show 4 more comments
vote up 55 vote down

If you are going to be doing a large amount of string concatenation, use the System.Text.StringBuilder object.

Bad:

string s = "This ";
s += "is ";
s += "not ";
s += "the ";
s += "best ";
s += "way.";

Good:

StringBuilder sb = new StringBuilder();
sb.Append("This ");
sb.Append("is ");
sb.Append("much ");
sb.Append("better. ");
link|flag
11  
In this example I'd rather do s = "This " + "is " + "not " + "the " + "best " + "way."; stackoverflow.com/questions/21078/… – Greg Dec 19 '08 at 19:52
6  
I disagree with blanket use of StringBuilder. If you're only doing 5 concatenations in the above example then StringBuilder might actually be slower (due to the overhead of constructing it). But any difference will be negligible either way. It only really matters for thousands of concatenations. – Evgeny Dec 20 '08 at 9:04
3  
String has a Concat method that can accept multiple strings. If you write s1+s2+s3 the compiler is smart enough to turn it into a single Concat call. However, if you're calling s1+=s2 in a loop that may get long, use StringBuilder (sb.Append(s)) instead. – Earwicker Dec 20 '08 at 10:48
3  
I wrote a simple test app on this, and under 4 concatenations string.concat is fastet. From 4 concatenations up, stringbuilder is faster. Try it, write it, use System.Diagnostic.Stopwatch. – BeowulfOF Dec 20 '08 at 13:19
10  
Does this really matter? codinghorror.com/blog/archives/… – Gary Willoughby Feb 8 at 22:18
show 10 more comments
vote up 133 vote down

Don't use "magic numbers" in your code.

Ex:

if(mode == 3) { ... }
else if(mode == 4) { ... }

Use Enumerations wherever possible, so the meaning, not the number, is exposed:

if(mode == MyEnum.ShowAllUsers) { ... }
else if(mode == MyEnum.ShowOnlyActiveUsers) { ... }

(I could have used a switch statement here, as well)

link|flag
3  
That's always a good idea regardless of the language that you're using. If not enumerations, at least use named constants. (The is actually one of the rules in the coding standards of the company that I work for.) – RobH Dec 19 '08 at 22:09
2  
This also allows you to define your constants in a central place and make only one change rather than hunting all over the code for the changes that you'd have to make otherwise. – RobH Dec 19 '08 at 22:11
2  
Same goes for magic strings. Don't put the same string literal hundreds of times in your code. What if you spell it wrong somewhere? – Earwicker Dec 20 '08 at 10:51
4  
IMO you should put the const first: if (CONST==value), so that you will get a compiler error if you typoed == to be = instead. Goes for any language. – Commander Keen Jun 21 at 8:44
5  
@Commander Keen: In C#, implicit conversions from int to bool are forbidden. – Jason Jul 28 at 3:13
show 7 more comments
vote up 158 vote down

I always get hung up on this one.

string s = "Take this out";
s.Replace("this", "that");  //wrong

oooops didn't actually change s....

s = s.Replace("this", "that");  //correct

Its pretty easy to make that mistake.

link|flag
5  
Dude, that ALWAYS happens to me, but only with Replace! With SubString and the like, that never happens, but with Replace that ALWAYS happens to me! – BFree Dec 19 '08 at 14:28
4  
Really nice that it is this way though. – corymathews Dec 19 '08 at 18:01
48  
It would be nice if there were a "Code has no effect" warning for that sort of thing. – Kyralessa Dec 19 '08 at 23:01
8  
The compiler ought to error if you discard the return value of a function unless you prefix the call with (void). Valid reasons for ignoring return values are so unusual that it would have be worth the minor inconvenience. Too late now. – Earwicker Dec 20 '08 at 10:41
5  
It makes sense as long as your remember that strings are immutable. – Hermann Jun 19 at 16:48
show 19 more comments

Your Answer

Get an OpenID
or

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