vote up 172 vote down star
306

What are some common mistakes made by .NET developers, and how can we avoid them?

For example, trying to open a file without checking whether or not it exists, or catching an error unnecessarily.

Please look in to the list before posting new


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

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

75 Answers

1 2 3 next
vote up 12 vote down

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

link|flag
1  
Also, use IEnumerable<T> where appropriate (read only collections). It's always best to stick with the lowest interface possible. – TheSoftwareJedi Dec 19 '08 at 12:26
2  
This is nothing specifically to do with generic lists. Non-generic List is no better (obviously worse in most cases), nor is an array. – Earwicker Dec 20 '08 at 10:54
show 5 more comments
vote up 118 vote down
link|flag
4  
The only problem with static in a webapp is most web devs don't think in terms of web safety... this can also affect instances of static classes in libraries in web apps that aren't threadsafe. Saw about 4 major weirdness issues related to services w/ unsafe clients used statically. You can cut yourself with a knife, but its hard to be a chef without one. – Tracker1 May 17 at 6:37
show 17 more comments
vote up 78 vote down

The most common error I make is starting to code without thinking first. I still catch myself doing it from time to time...

Does happen when I work outside the .net framework, too.

Another bad habit (which I successfully dropped) is swallowing exceptions:

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

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

link|flag
1  
Oh yes, I have done my share of abusing it... – Treb Dec 19 '08 at 13:57
3  
I'd appreciate if you elaborate on this one: I use it regularly and would love to know if I must get rid of it. Eg.: try { File.Delete(blah); } catch {} to avoid reporting an unlikely file deletion problem that user will not understand anyway. – Serge - appTranslator Feb 9 at 17:32
1  
@Serge: There are a few conditions where its ok to do so. In general its better to at least log the exception information, so if the program crashes you know where to look for the cause. See stackoverflow.com/questions/313839/… for example. – Treb Feb 10 at 9:20
3  
I have been lobbying the management to make swallowing an exception without even a comment on why it's being swallowed a fireable offense. No luck yet. – James Schek Mar 17 at 0:13
1  
We had a guy that was upset that we would catch exceptions log them (via email or DB call) and then return an error from some of our libs, he wanted us to catch the exception, and then re throw it so another try catch could catch it vs. just checking what is returned – Bob The Janitor Mar 25 at 16:29
show 7 more comments
vote up 231 vote down
throw ex;

Instead of

throw;

The first example will reset the stack trace to the point of the throw, whereas the latter will maintain the original stack. This is crucial for debugging.

throw ex;

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

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

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

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

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

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


//Better, check for null

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

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

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

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

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

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

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

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

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

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

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

link|flag
5  
This is very important for Dialogs as they are not normally disposed of by the garbage collector. – Chris Porter Dec 19 '08 at 22:15
2  
I'm not sure how preferring "using" over calling "dispose" is necessarily much better or will necessarily solve the problem. Don't get me wrong "using" is good practice.. but if you are going to forget to dispose of something, aren't you likely to forget the "using" block anyway? – BobbyShaftoe Dec 20 '08 at 3:40
show 4 more comments
vote up 5 vote down
  • Using View State instead of Control State. View State saves everything, where as control state saves only the information needed to operate the statefull control on the statelessweb enviernment.
  • Not using paterns such as MVP in order to reduce coupling.
  • Having too much logic in the view instead of the domain objects.
link|flag
vote up 69 vote down

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

It's so common, there is a built-in command to the SOS extension to WinDBG. Just get a memory dump of an ASP.NET application and run:

!finddebugtrue

which would output something like:

0:016> !finddebugtrue

Debug set to true for Runtime: 61b48dc, AppDomain: /MyDebugApplication

Debug set to true for Runtime: 1f50e6d8, AppDomain: /MemoryIssues

Total 16 HttpRuntime objects

Tess' article above has more examples.

link|flag
1  
+1 because I do that too often... – Andy May Dec 19 '08 at 22:12
3  
Dario - You can still output PDBs even with debug turned off. For any production application, you really should never deploy with Debug=true. There are much better ways to troubleshoot your apps without taking the performance hit. – Cory Foy Feb 26 at 17:50
12  
System admins should really add this to machine.config on production/live servers: <System.Web> <deployment retail="true" /> </System.Web> This over-rides any debug="true" settings in web.config – Dan Diplo Jul 22 at 11:42
show 3 more comments
vote up 67 vote down

Use this cast:

Tree tree = obj as Tree;

... only if the program logic is such that you anticipate obj may or may not be of type tree.

In the situation where you expect that obj will only ever be of type Tree, prefer this style of cast:

Tree tree = (Tree)ojb;

Prefer a (TargetType) style cast unless you really do need to make use of the conditional functionality offered by an 'as' cast.


Note: be sure to follow an 'as' cast with an 'if' or other appropriate logic to ensure that if the result of the 'as' was null, an attempt won't be made to dereference it. This is a mistake:

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

In this case, the programmer meant one of these:

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

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

Some people believe that...

Tree tree = (Tree)obj;

...is bad because it may throw an exception if the prerequisite that obj is a Tree isn't met. It's not bad though, because it will throw an InvalidCast exception. That's the right sort of exception and is thrown at the right time.

The NullReference exception that occurred after the 'as' cast in the first GrowTree() example gets thrown:

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

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

The performance if these two types of cast is similar. It is true that a (TargetType) style class throws an exception if the cast fails. However, this is not a problem that would affect performance. The reason is that we use a (TargetType) style cast only when we expect the cast will always succeed. So, no exception should ever be thrown! If an exception does get thrown, then there is a problem in the logic/design of the code. Fixing a problem like this by changing the (TargetType) cast into an 'as' style cast is probably wrong as it will probably just mask the real cause of the problem.

Using the 'as' cast instead of the (TargetType) cast because you think it looks prettier is not a good reason for writing incorrect code.

Writing:

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

every time you need a cast, "just to be on the safe side" is absurd. You have to stop somewhere, otherwise one day you'll find yourself writing:

if( thisComputersPowerHasFailed )
{
    SendEmailToAdministratorToSaySomethingHasGoneWrong();
}

Code like this introduces more and more conditional execution paths through your code. Every time you write some code to cope with a case that you don't expect should happen, you will increase the complexity of your program. Unnecessary complexity is just the kind of thing that causes bugs to slip in to code. The root causes of bugs will be tricky to find because they'll be hidden behind other unnecessary error handlers that try to hide or log the problem and carry on. A (TargetType) cast adheres to the generally good advice of writing code to fail-fast.

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

Not unhooking event handlers appropriately after wiring them.

This is because each event registration causes a reference to be created from the event source to the object/delegate that handles the event. These references can easily form part of a path of references from a root heap object to the handler.

Any object that has a path of references from the root heap object will not be garbage collected.

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

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

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

One of the most dangerous pitfalls:

Creating a temp object, using its events by utilizing AddHandler (in VB) and then forgetting to remove those handlers. One would think that the object is collected by Garbage Collector when it goes out of scope, but it won't since there is still a pointer to that object (a function pointer) and GC won't clean it up.

You will also notice that the event handler hits many times. Once for every object you've created, used its events, and forgot to remove it. In addition to memory problems, this would cause your app to run slower and slower while it is working because the code in your handler would execute multiple times.

Just realized this problem because of performance issues of my app.

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

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

public event EventHandler SomethingHappened;

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

Change the name of a property without carefully checking if it is used in data binding.

Properties are used for databinding. Unfortunately the binding mechanism in Windows Forms and WPF use the property name as string. If you change the name of a property, you will not get any compiler error or warning, only a runtime error if you are lucky.

link|flag
5  
shhh .. we're all supposed to believe in the dynamic language propaganda and eschew any nonsense about compiler errors. :) – BobbyShaftoe Dec 20 '08 at 4:26
show 5 more comments
vote up 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
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 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 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 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 -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 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
3  
+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 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 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 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 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 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 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 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 -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
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.