vote up -1 vote down star

Hi

There is too much discussion about the class fields naming, but the major difference is this:

private int foo;

private int _foo;

Can anyone (like John Skeet or someone with many responses and badges) tell us, what's the latest decision about this convention?

Thank you!

flag

7  
Any team that finds itself arguing over such problems should seriously consider firing its team lead. – zvolkov Oct 27 at 13:51
1  
The only decision that is needed is the one you make in your team. After all, this is one of the decisions that will have absolutely no impact on the quality of your product. If the team really cannot reach a consensus on the topic, flip a coin and move on with more important issues. – Fredrik Mörk Oct 27 at 14:03
1  
@Fredrick: Due to the level of consistency in .NET naming, at a bare minimum the team should stick to a common convention within any particular type. It's preferable to keep it consistent at a library level when possible. – 280Z28 Oct 27 at 15:01
Possibly duplicate: stackoverflow.com/questions/743808/… – AJ Oct 27 at 15:01
2  
The point of Stack Overflow is that the community can vote on the responses. Why would you limit your responses to people with "many responses badges". – senfo Oct 27 at 20:52
show 2 more comments

8 Answers

vote up 15 vote down check

Here's what I've found:

"Recent" code in the .NET Framework has used both (though never in the same class, and generally the difference is across teams as a whole - WPF might use something different from Parallel FX (haven't checked if they do), but WPF blending effects would use the same as WPF text rendering).

StyleCop "suggests" using foo as a member field instead of _foo, and referencing it as this.foo inside of class members. The rationale there is:

  1. Using this.memberName is clearer than memberName and
  2. When using this.memberName, the _ doesn't do anything in regards to identifying the reference as a member field, because the this. already did that. Unndecessary redundancy clutters code, therefore no _ prefix.

I personally, IMO prefer _foo for two reasons that form the rationale for the other method you've observed:

  1. Reducing the number of aliased names in methods
  2. I can still keep parameter names with the same (exact) spelling and casing as member fields. With the only change being the underscore, it just seems clearer to me.
link|flag
1  
I just checked StyleCop and found the same, and I also prefer the underscore thing for the same reasons, so this is +1. Luckily you can just disable rule SA1309 (Field names must not start with an underscore). – OregonGhost Oct 27 at 13:46
The funny part is that ReSharper may later suggest to remove this. since it is redundant. I also like the underscore because it will make intellisense list all private fields near each other. – Fredrik Mörk Oct 27 at 13:49
Oh the irony... One tool to make us better suggest one thing, only to have a second tool tell us we were right the first time... – Matthew Scharley Oct 27 at 13:54
Dear whoever marked me down without a reason: my answer is an objective presentation of evidence shown to me followed by a very clearly labeled subjective comment for the sole purpose of providing the rationale for the other side of the argument. It's the best way to explain to the OP where this debate came from and why people have broadly fallen into the two mentioned opinions out of all the options available. – 280Z28 Oct 27 at 14:57
+1 from an ardent lover of this.foo, for a responsible & through discussion of a religious issue. – Jeff Sternal Oct 27 at 15:02
vote up -1 vote down

Use StyleCop

link|flag
While I agree with most of the rules, team members have the right to disagree. Otherwise, these would be syntax rules, rather than suggestions. On the other hand, ignoring all StyleCop rules essentially defeats the purpose. Use what works for your team and just be consistent. Personally, I prefer the underscore over using "this." all over the place. – senfo Oct 27 at 21:10
vote up 5 vote down

We follow this, which is a summary of MS .NET practices: http://www.irritatedvowel.com/Programming/Standards.aspx

Then it would be underscore for private fields.

private int _foo;
link|flag
1  
Was this downvoted for being incorrect, or you just don't agree with me? – Arjan Einbu Oct 27 at 14:00
vote up 0 vote down

Personally I prefer _foo for a private field and Foo for a public field as follows

private string _foo;

public string Foo 
{
    get { return _foo; }
    set { _foo = value; }
}
link|flag
vote up 0 vote down

Who's going to NameCon next year?

link|flag
vote up 2 vote down

I certainly won't start comparing myself to Jon Skeet, but here's my take on it.

You have two situations:

  1. You always prefix your field accesses with this..
  2. You do not.

For each of these cases:

  1. Preference, judgement call.
  2. Use a prefix for private fields. I don't care what it is, but pick something and stick with it. It seems the two common ones are m_ and just _.

In either case, be consistant, like with anything.

link|flag
vote up 2 vote down

The "usual" naming convention is to have the underscore for the private field and the same name without the underscore for the corresponding (if any) property.

link|flag
This is what we do. Seems simple enough and if you look at a lot of the official .NET framework code that's what MS seems to do (well, most of the time). – Yadyn Oct 27 at 13:47
vote up 1 vote down

The latest decision according to "official" Field Usage Guidelines is:

private int foo;

Field names are written by convention in camelCase.

Also read Naming Guidelines - .NET Framework General Reference

link|flag
2  
The trouble with t'Internet is you can never tell if someone's joking. – serialhobbyist Oct 27 at 13:39
2  
I like it. Esp. the "latest decision" part (who decided it btw)? – shahkalpesh Oct 27 at 13:40
1  
where did that come from ? PascalCasing is for public members, not private fields... – Thomas Levesque Oct 27 at 13:42
2  
"Do not use uppercase letters for field names" - msdn.microsoft.com/en-us/library/… – Stuart Dunkeld Oct 27 at 13:44
2  
You should clarify that this refers only to const and static readonly fields, and your example mentions a private instance field. – 280Z28 Oct 27 at 13:45
show 3 more comments

Your Answer

Get an OpenID
or

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