vote up 23 vote down star
30

Possible Duplicate:
Common programming mistakes for .NET developers to avoid?

To cut a long story short: I find the Java antipatterns an indispensable resource. For beginners as much as for professionals. I have yet to find something like this for C#. So I'll open up this question as community wiki and invite everyone to share their knowledge on this. As I am new to C#, I am strongly interested in this, but cannot start with some antipatterns :/

Here are the answers which I find specifically true for C# and not other languages.

I just copy/pasted these! Consider throwing a look on the comments on these as well.


Throwing NullReferenceException

Throwing the wrong exception:

if (FooLicenceKeyHolder == null)
    throw new NullReferenceException();


Properties vs. public Variables

Public variables in classes (use a property instead).

Unless the class is a simple Data Transfer Object.


Not understanding that bool is a real type, not just a convention

if (myBooleanVariable == true)
{
    ...
}

or, even better

if (myBooleanVariable != false)
{
    ...
}

Constructs like these are often used by C and C++ developers where the idea of a boolean value was just a convention (0 == false, anything else is true); this is not necessary (or desirable) in C# or other languages that have real booleans.


Using using()

Not making use of using where appropriate:

object variable;
variable.close(); //Old code, use IDisposable if available.
variable.Dispose(); //Same as close.  Avoid if possible use the using() { } pattern.
variable = null; //1. in release optimised away.  2. C# is GC so this doesn't do what was intended anyway.
flag
2  
Well... this was exactly what I tried to avoid. The question linked as "duplicate" contains many common OO "bad practices". I've been developing for more than 10 years now and these are not new to me. What I expected in this case, were specific C# anti-patterns. – exhuma Oct 7 at 7:55
1  
The Java "antipatterns" you link to are not antipatterns (e.g ineffective and/or counterproductive design patterns), but bad coding practices, like most of the answers to your question. Like design patterns, antipatterns are language agnostic. – comichael Oct 12 at 4:48
show 1 more comment

31 Answers

1 2 next
vote up 2 vote down

I have actually seen this.

bool isAvailable = CheckIfAvailable();
if (isAvailable.Equals(true))
{ 
   //Do Something
}

beats the isAvailable == true anti-pattern hands down!
Making this a super-anti-pattern!

link|flag
vote up 1 vote down
if(data == null)
{
  variable = data;
}
else
{
  variable = new Data();
}

can be better written as

variable = (data == null) ? data : new Data();

and even better written as

variable = data ?? new Data();

Last code listing works in .NET 2.0 and above

link|flag
show 1 more comment
vote up 8 vote down
using Microsoft.SharePoint;

'nuff said

link|flag
vote up 1 vote down

Found this a few times in a system I inherited...

if(condition){
  some=code;
}
else
{
  //do nothing
}

and vice versa

if(condition){
  //do nothing
}
else
{
  some=code;
}
link|flag
1  
It shows clearly that the author thought about the case when the expression evaluates to one of the values and actively decided that there's nothing to do. I think this actually helps readability if used correctly. – erikkallen Oct 10 at 12:13
show 4 more comments
vote up 2 vote down

Not using ternary's is something I see converts to c# do occasionally

you see:

private string foo = string.Empty;
if(someCondition)
  foo = "fapfapfap";
else
  foo = "squishsquishsquish";

instead of:

private string foo  = someCondition ? "fapfapfap" : "squishsquishsquish";
link|flag
4  
I've met quite a few people who were adamantly opposed to EVER using ternary conditionals, saying that it makes for "unreadable code". Fools. – snicker Oct 8 at 21:51
1  
If there is only one "thing" in each of the conditionals, then the ternary operator is great. But calling functions (especially with multiple parameters), concatenating strings, etc makes for bad readability. – DisgruntledGoat Oct 12 at 18:55
show 3 more comments
vote up 2 vote down

For concating arbitrary number of strings using string concatenation instead of string builder

Exampls

foreach (string anItem in list)
    message = message + anItem;
link|flag
show 3 more comments
vote up 2 vote down

The project I'm on had fifty classes, all inheriting from the same class, that all defined:

public void FormatZipCode(String zipCode) { ... }

Either put it in the parent class, or a utility class off to the side. Argh.

Have you considered browsing through The Daily WTF?

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

Accessing modified closures

foreach (string list in lists)
{
        Button btn = new Button();
        btn.Click += new EventHandler(delegate { MessageBox.Show(list); });
}

(see link for explanation and fix)

link|flag
vote up 15 vote down

I see following code a lot:

if (i==3)
       return true;
else
       return false;

should be:

       return (i==3);
link|flag
2  
Oh man I see that a lot... +1. – KG Oct 8 at 15:16
8  
return is not a function. The parentheses are unnecessary. – P Daddy Oct 8 at 20:55
3  
@PDaddy: that is true, but the parentheses aid readability. – DisgruntledGoat Oct 12 at 18:39
show 7 more comments
vote up 1 vote down

Using properties for anything other than to simply retrieve a value or possibly an inexpensive calculation. If you are accessing a database from your property, you should change it to a method call. Developers expect that method calls might be costly, they don't expect this from properties.

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

This is true I seen it with my own eyes.

public object GetNull()
{
     return null;
}

It was actually used in the app, and even had a stored procedure to go with it too, an sp_GetNull that would return null....

that made my day.

I think the sp was used for a classic asp site .. something to do with a result set. the .net one was someone idea of "converting" the code into .net...

link|flag
1  
Well, you encapsulate the concept of nullity inside a function :P – Daniel Daranas Oct 8 at 14:22
show 1 more comment
vote up 9 vote down

Quite often I stumble over this kind of var-abuse:

var ok = Bar();

or even better:

var i = AnyThing();

Using var that way makes no sense and gains nothing. It just makes the code harder to follow.

link|flag
7  
I agree - var seems to be getting very overused recently. – Paddy Oct 7 at 20:39
15  
I don't see an antipattern here, the var removes redundant type definition, as Bar() or AnyThing() will always return the same type. If you will ever change the return type of Bar() or AnyThing(), e.g. use an interface instead of the implementation, you will not need to change ok and i if they only require the interface, which is nice. – Simpzon Oct 7 at 21:08
6  
It's bad because you are not able to spot the type instantly without knowing the Bar() and AnyThing() methods. In my opinion Readability is more important than saving a few redundant characters. Apart from this, var is very usefull for statements like this: var i = new MyTypeWithVeryLongName(); The difference is that you can recognice the type instantly. – Christian Schwarz Oct 8 at 6:28
6  
var something = new Something() is fine. You know what type the object will be. Even better is when var is combined with generic methods to reduce duplication (follows DRY rule). – Dockers Oct 8 at 8:35
6  
Unfortunately ReSharper seems to enjoy suggesting any variable declaration should use var.. – Andrew Koester Oct 8 at 13:32
show 8 more comments
vote up 6 vote down

Declaring and initializing all local variables at the top of each method is so ugly!

void Foo()
{
    string message;
    int i, j, x, y;
    DateTime date;

    // Code
}
link|flag
2  
That's how I was taught to code in college ;) Don't do it anymore though, it's a pain. – Ed Woodcock Oct 8 at 14:03
5  
Isn't this more of a subjective opinion than a C# anti pattern? – Patrik Oct 8 at 15:56
2  
What's wrong with this? If you're coding your methods properly, they're short enough to see all your variables anyways. I would submit that the variables should be defined at the top of their block, rather than method, unless they must be for scope issues. – snicker Oct 8 at 21:42
show 1 more comment
vote up 8 vote down

Not understanding that bool is a real type, not just a convention

if (myBooleanVariable == true)
{
    ...
}

or, even better

if (myBooleanVariable != false)
{
    ...
}

Constructs like these are often used by C and C++ developers where the idea of a boolean value was just a convention (0 == false, anything else is true); this is not necessary (or desirable) in C# or other languages that have real booleans.

Updated: Rephrased the last paragraph to improve its clarity.

link|flag
3  
In C and C++ (I've not heard of the C/C++ language, yet), that is not a convention, and it's actually wrong. Since "everything else" is true, doing if(a == true), for some definition of true (say, 1), will not work as intended if a is, say, 4. Likewise, in both cases, if(myBooleanVar) and if(!myBooleanVar) would be a better replacement. – Tordek Oct 7 at 6:36
1  
if (myBool == true) can make sense, if myBool is a nullable boolean. – Rauhotz Oct 7 at 20:19
1  
Is this really an anti-pattern or just a irritating redundancy? – Jeff Sternal Oct 7 at 20:41
show 7 more comments
vote up -2 vote down

Overuse/abuse of object initializers for everything, probably because of laziness:

var person = new Person
{
    FirstName = "joe",
    (... lots of setters down here)
};

without realizing that this is almost as bad as making all the fields public. You should always take care into creating some valid constructors, that initialize your objects to a valid state.

link|flag
4  
IMHO, it's not a good design to create constructors with many parameters just to initialize your class. You should provide simple constructors and additional properties. Constructors (also applies to methods) with more than 3 parameters have a really bad smell. – Christian Schwarz Oct 7 at 6:22
show 5 more comments
vote up 23 vote down

I see this one way too much, both in Java and C#...

if(something == true){
  somethingelse = true;
}

with bonus points if it also has

else{
  somethingelse = false;
}
link|flag
2  
Without the bonus it's not that painful (only the "== true") – ripper234 Oct 7 at 6:16
7  
if (someCondition) return true; else return false; AAAARRRGGGG!!!! – Ed Swangren Oct 7 at 6:16
7  
With the first case, consider the case of something = false and somethingelse = true. You shouldn't refactor to somethingelse = something – vanja. Oct 7 at 6:20
3  
@vanya: Of course not. That's somethingelse |= something. – Tordek Oct 7 at 6:31
show 4 more comments
vote up 1 vote down

Ignorance is bliss (know your framework):

TimeSpan keyDays = new TimeSpan(Licence.LicenceExpiryDate.Ticks);
TimeSpan nowDays = new TimeSpan(System.DateTime.Now.Ticks);

int daysLeft = keyDays.Days - nowDays.Days;
link|flag
1  
Sure, this is rather verbose and partly redundant. Could have been int daysLeft = DateTime.Now.Subtract(Licence.LicenceExpiryDate).Days; But verbosity IMHO is not antipattern, performance and readability should not suffer too much, here. – Simpzon Oct 7 at 21:37
1  
Stupidity is an anti-pattern :) – leppie Oct 8 at 5:12
show 2 more comments
vote up 2 vote down

Speaking with an accent always caught me.

C++ programmers:

if (1 == variable) { }

In C# this will give you a compiler error if you were to type if (1 = variable), allowing you to write the code the way you mean it instead of worrying about shooting yourself in the foot.

link|flag
2  
and yet is the safe thing to do. If you make a typo (= instead of ==) you end up with "1 = variable" and the compiler will call you up on it. – vanja. Oct 7 at 6:24
4  
The safe thing to do is learn to program and type ==, not reverse things... – GMan Oct 7 at 11:48
3  
C# makes this convention unnecessary. This code: Int32 x = 5; if (x = 5) { } results in Error 74: Cannot implicitly convert type 'int' to 'bool' Changing "=" to "==" works fine. – JeffK Oct 7 at 21:12
1  
@spence making = return the assigned value allows for the pattern: while((line=r.ReadLine()) != null){//do stuff to line} – EsbenP Oct 9 at 13:30
show 5 more comments
vote up 14 vote down

Throwing NullReferenceException:

if (FooLicenceKeyHolder == null)
    throw new NullReferenceException();
link|flag
10  
ArgumentNullException ? – Matthew Scharley Oct 7 at 5:39
1  
Yes, that would be the correct one to throw :) – leppie Oct 7 at 5:42
1  
Also, I think the general antipattern would be manually throwing any exception that the runtime itself throws when something bad happens – Matthew Scharley Oct 7 at 5:46
4  
I doubt that ArgumentNullException is the way to go in this case since from the code, it does not seem that this.FooLicenseHolder is an argument of a function (at least is does not LOOK like one conventions-wise). Perhaps rephrasing the code a bit would make your (perfectly valid) point little clearer. – petr k. Oct 7 at 20:22
show 4 more comments
vote up 3 vote down

Needless casting (please trust the compiler):

foreach (UserControl view in workspace.SmartParts)
{
  UserControl userControl = (UserControl)view;
  views.Add(userControl);
}
link|flag
2  
@ed: it's not added to itself. views != view. ;) – exhuma Oct 8 at 7:20
show 3 more comments
vote up 8 vote down

I have found this in our project and almost broke the chair...

DateTime date = new DateTime(DateTime.Today.Year, 
                             DateTime.Today.Month, 
                             DateTime.Today.Day);
link|flag
4  
For the record, the correct usage is: DateTime date = DateTime.Now; – Wedge Oct 7 at 5:40
5  
or DateTime date = DateTime.ToDay; – astander Oct 7 at 5:43
2  
Actually, the correct usage is: DateTime date = DateTime.Now.Date; (or Today.Date) If you omit the Date you will get the time also. – Meta-Knight Oct 7 at 20:26
3  
And I don't really see a big problem with this code, maybe the coder just didn't know about the Date property... -1 – Meta-Knight Oct 7 at 20:26
2  
Um, Correct usage is Datetime date = Datetime.Now.Date – Spence Oct 7 at 20:37
show 6 more comments
vote up 4 vote down
link|flag
1  
public event EventHandler MyEvent = delegate { }; <-- no null check needed anymore. – Ed Swangren Oct 7 at 6:21
show 7 more comments
vote up 6 vote down

Private auto-implemented properties:

private Boolean MenuExtended { get; set; }
link|flag
5  
Auto-implemented property might be converted later into a full-blown property with custom getter and setter methods.. You can't easily do this to a field. – Gart Oct 7 at 5:49
3  
You can, but not in a binary compatible way... but then again, they are private anyway, so they will be binary compatible since the field/property isn't exposed. – Matthew Scharley Oct 7 at 5:51
1  
For one, some controls only reflect properties, not fields. The PropertyGrid for example. Sometimes you need to use properties when dealing with reflection, even if those properties are private. – rein Oct 7 at 6:09
1  
This is wrong. Data binding only works on properties (not fields). – Ed Swangren Oct 7 at 6:27
3  
Binary compatibility and data-binding are reasons you might need to use public properties, but those don't apply here. There are several advantages to properties. You can put a debug breakpoint on access. You can easily change their read/write access level. And they can often be useful in refactoring, migrate null checks paired with default values into the property itself, for example. Given the tiny difference in effort needed to create auto-implemented properties, I'd say it's a wash whether properties or fields are the better default. – Wedge Oct 7 at 10:07
show 11 more comments
vote up 41 vote down

Rethrowing the exception incorrectly. To rethrow an exception :

try
{
    // do some stuff here
}
catch (Exception ex)
{
    throw ex;  // INCORRECT
    throw;     // CORRECT
    throw new Exception("There was an error"); // INCORRECT
    throw new Exception("There was an error", ex); // CORRECT
}
link|flag
5  
True, dont ever hide the stack trace... – astander Oct 7 at 5:34
20  
catch (Exception ex) is an anti-pattern in itself. – Joren Oct 7 at 6:27
5  
@Joren, catch (Exception ex) without throw is an anti-pattern ... there are lot's of valid cases to catch the general exception type if you throw back (like, logging, throwing a new exception type, doing a rollback on some resources, etc.). But of course the rules vary for applications, libraries, plugins etc. – Pop Catalin Oct 8 at 14:09
1  
throw new Exception("There was an error") might be perfectly valid if you want to hide the original error (e.g. a library), perhaps security-related. – erikkallen Oct 10 at 12:04
show 3 more comments
vote up 10 vote down

Insulting the law of Demeter:

a.PropertyA.PropertyC.PropertyB.PropertyE.PropertyA = 
     b.PropertyC.PropertyE.PropertyA;
link|flag
show 3 more comments
vote up 31 vote down

GC.Collect() to collect instead of trusting the garbage collector.

link|flag
7  
And failing to wait for pending finalizers to complete, in the rare situations where you do want to force a collection. – Eric Lippert Oct 7 at 15:16
4  
You can get an OutOfMemoryException for having fragmented references or for requesting more memory then you have on your system. Do you, by any chance, have your page file size fixed? I mean if you think you can write a better garbage collector than Microsoft I say go for it and then get them to buy it from you. – Matthew Whited Oct 8 at 13:10
show 5 more comments
vote up 5 vote down
object variable;
variable.close(); //Old code, use IDisposable if available.
variable.Dispose(); //Same as close.  Avoid if possible use the using() { } pattern.
variable = null; //1. in release optimised away.  2. C# is GC so this doesn't do what was intended anyway.
link|flag
1  
@Spence: .Close() isn't necessarily 'old code'. Some classes provide a Close() method as an alias to Dispose() where close makes more sense semantically. – Matthew Scharley Oct 7 at 5:28
2  
You had me scared then. This is a bug in the .Net compact framework, not in win forms. Weak reference works in the real .net CLR and I also stand by the fact that the call to null will be optimised away in release mode (which was one of the main motivations for the dispose pattern, which is a method call forcing the lifetime of the object to last at least that long). But .Net CF is definately an interesting beast. – Spence Oct 7 at 8:47
show 3 more comments
vote up 2 vote down

Massively over-complicated 'Page_Load' methods, which want to do everything.

link|flag
3  
Yes but it's not an antipattern of the language (C#) it's an antipattern of ASP.NET... – Meta-Knight Oct 8 at 13:12
show 4 more comments
vote up 2 vote down

is this considered general ?

public static main(string [] args)
{
  quit = false;
  do
  {
  try
  {
      // application runs here .. 
      quit = true;
  }catch { }
  }while(quit == false);
}

I dont know how to explain it, but its like someone catching an exception and retrying the code over and over hoping it works later. Like if a IOException occurs, they just try over and over until it works..

link|flag
1  
This is probably a literal translation of VB6 "On Error Resume Next" – Benjol Oct 7 at 5:36
1  
Not quite, a literal translation of that 'pragma'(?) would be a try/catch around every line and silently throwing away Exception. – Matthew Scharley Oct 7 at 5:45
show 4 more comments
vote up 11 vote down
int foo = 100;
int bar = int.Parse(foo.ToString());

Or the more general case:

object foo = 100;
int bar = int.Parse(foo.ToString());
link|flag
6  
This... what? Why? -headdesk- You can't possibly tell me that someone did this? – Matthew Scharley Oct 7 at 5:25
1  
I kid you not, I've seen people doing this for ints, one of many WTF moments I had. – Andrew Barrett Oct 7 at 5:33
12  
You're right, they really should be using TryParse(). :P – rein Oct 7 at 5:35
show 8 more comments
1 2 next

Your Answer

Get an OpenID
or

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