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!
|
There is too much discussion about the class fields naming, but the major difference is this:
Can anyone tell us, what's the latest decision about this convention? Thank you! |
|||||||||||||||||||||
|
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.
|
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
I personally, IMO prefer
|
|||||||||||||||||||
|
|
We follow this, which is a summary of MS .NET practices with reasoning given for the choices.
Then it would be underscore for private fields.
|
|||||
|
|
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. |
|||||
|
|
Personally I prefer _foo for a private field and Foo for a public field as follows
|
|||
|
|
|
I certainly won't start comparing myself to Jon Skeet, but here's my take on it. You have two situations:
For each of these cases:
In either case, be consistant, like with anything. |
|||
|
|
|
The latest decision according to "official" Field Usage Guidelines is:
Field names are written by convention in camelCase. Also read Naming Guidelines - .NET Framework General Reference |
|||||||||||||||||||||
|
|
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. |
|||
|
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. |
|||
|
|