Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

private int foo;

private int _foo;

Can anyone tell us, what's the latest decision about this convention?

Thank you!

share|improve this question
14  
Any team that finds itself arguing over such problems should seriously consider firing its team lead. – zvolkov Oct 27 '09 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 '09 at 14:03
3  
@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 '09 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 '09 at 20:52
1  
Why? Just because this question is not a technical problem, but a request for a recommendation - supposing that guys working in big companies know what convention they use. In 98 % of cases I was asking the public. This time I'm not. I don't understand what's your problem and why you gave me -1 ... – PaN1C_Showt1Me Oct 28 '09 at 6:41
show 5 more comments

closed as not constructive by Servy, Conrad Frix, Ralgha, Beska, Mario Feb 1 at 22:11

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

up vote 34 down vote accepted

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. Unnecessary 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.
share|improve this answer
3  
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 '09 at 13:46
7  
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 '09 at 13:49
2  
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 '09 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 '09 at 14:57
1  
+1 from an ardent lover of this.foo, for a responsible & through discussion of a religious issue. – Jeff Sternal Oct 27 '09 at 15:02
show 2 more comments

We follow this, which is a summary of MS .NET practices with reasoning given for the choices.

Class-Level Private and Protected Variables:

Camel Case with Leading Underscore .. Of all the items here, the leading underscore is really the only controversial one. I personally prefer it over straight underscore-less camel case for my private variables so that I don't have to qualify variable names with "this." to distinguish from parameters in constructors or elsewhere where I likely will have a naming collision ..

Microsoft recommends against the m_ (and the straight _) even though they did both in their code .. If I want my class to be fully CLS-compliant, I could leave off the prefix on any C# protected member variables. In practice, however, I never worry about this as I keep all potentially protected member variables private, and supply protected accessors and mutators instead.

Why: In a nutshell, this convention is simple (one character), easy to read (your eye is not distracted by other leading characters), and successfully avoids naming collisions with procedure-level variables and class-level properties.

Then it would be underscore for private fields.

private int _foo;
share|improve this answer
2  
Was this downvoted for being incorrect, or you just don't agree with me? – Arjan Einbu Oct 27 '09 at 14:00

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.

share|improve this answer
1  
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). – Sean Hanley Oct 27 '09 at 13:47

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; }
}
share|improve this answer

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.

share|improve this answer

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

share|improve this answer
2  
The trouble with t'Internet is you can never tell if someone's joking. – serialhobbyist Oct 27 '09 at 13:39
2  
I like it. Esp. the "latest decision" part (who decided it btw)? – shahkalpesh Oct 27 '09 at 13:40
1  
where did that come from ? PascalCasing is for public members, not private fields... – Thomas Levesque Oct 27 '09 at 13:42
2  
"Do not use uppercase letters for field names" - msdn.microsoft.com/en-us/library/ta31s3bc(VS.71).aspx – stuartd Oct 27 '09 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 '09 at 13:45
show 3 more comments

personally, I use mFoo for the member variable, Foo for the property, pFoo for parameters, and foo for local variables. (and sometimes rFoo for the return value of a method, and very rarely lFoo for a local variable.)

this is perhaps not 'standard' convention, but with naming conventions, consistency and clarity are more important than conforming to a standard.

share|improve this answer
was it just me that misread pFoo as if the F wasn't there? – Tim Abell Apr 4 '12 at 10:01
heh, just following the name everyone else was using... 8) – Sahuagin Apr 5 '12 at 0:35

There's a practical reason to use _name for fields, though - by default in the VS debugger the fields will show up before any properties, instead of mixed in.

share|improve this answer

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