vote up 6 vote down star
1

Hi,

Are there any problems with not prefixing private fields with an underscore in C# if the binary version is going to be consumed by other framework languages? For example since C# is case-sensitive you can call a field "foo" and the public property "Foo" and it works fine.

Would this have any effect on a case-insensitive language such as VB.NET, will there by any CLS-compliance (or other) problems if the names are only distinguishable by casing?

flag

61% accept rate
I think you mean that C# is case-sensitive and VB is not. – Gorpik Jan 16 at 12:19
I just fixed that. – Kev Jan 16 at 12:21
Whops, yeah sorry. Mental slip-up =) Thanks for the edit Kev and to Gorpik for pointing it out as well – TheCodeJunkie Jan 16 at 12:32
The point of the underscore prefix, BTW, is not to deal with case issues. It's to be able to easily and visually tell fields and locals apart when reading code. I'll use it in C# and VB alike. – DotNetGuy Jan 16 at 12:34

12 Answers

vote up 16 vote down check

It will have no effect.

Part of the recommendations for writing CLS-compliant libraries is to NOT have two public/protected entities that differ only by case e.g you should NOT have

public void foo() {...}

and

public void Foo() {...}

what you're describing isn't a problem because the private item isn't available to the user of the library

link|flag
Even though there'll be no effect, it's still a convention I'd be uncomfortable with - since it's a recipe for confusion if they differ only by case. It's just too easy to mis-read or mis-type if the only difference is the initial capital. – ChrisA Jan 16 at 12:30
P.S. Personally, I don't underscore in C#. For me it's a personal preference, not a religious belief – Binary Worrier Jan 16 at 12:32
I've done both ways and I wanted to make up my mind, one and for all, based on knowledge :P – TheCodeJunkie Jan 16 at 12:35
2  
I think underscores look messy in code. – Joan Venge Jan 16 at 18:19
2  
I'm using underscores. It is easier to distinguish them from the arguments and local variables. – Rinat Abdullin Jan 16 at 19:12
show 3 more comments
vote up 7 vote down

Since we are talking about a private field, it does not affect a user of your class.

But I recommend using an underscore for the private field, because it can make code easier to understand, e.g:

private int foo;
public void SetFoo(int foo)
{
  // you have to prefix the private field with "this."
  this.foo = foo;

  // imagine there's lots of code here,
  // so you can't see the method signature



  // when reading the following code, you can't be sure what foo is
  // is it a private field, or a method-argument (or a local variable)??
  if (foo == x)
  {
    ..
  }
}

In our team, we always use an underscore prefix for private fields. Thus when reading some code, I can very easily identify private fields and tell them apart from locals and arguments. In a way, the underscore can bee seen as a shorthand version of "this."

link|flag
2  
Well I always prefix with 'this' no matter if I'm accssing a field, property or method. – TheCodeJunkie Jan 16 at 12:34
For me, the underscore is sort of a shorthand notation of "this.". – Martin Jan 16 at 12:35
In R#, the advice is to not call the parameter foo. Why not call it 'value' since you know it will be used to Set Foo ? – Think Before Coding Jan 16 at 12:41
or you can name the parameter aFoo – Partyzant Jan 16 at 12:46
1  
@Martin: The problem with underscore as a shorthand for "this" is that it can't necessarily be applied to all class members while "this" can. I think the code reads much easier/cleaner with the "this" keyword. In your example, the if (foo == x) will always refer to the parameter foo. – Scott Dorman Jan 16 at 19:11
show 1 more comment
vote up 0 vote down

When you want your assembly to be CLS compliant, you can use the CLSCompliant attribute in your assemblyinfo file. The compiler will then complain when your code contains stuff that is not cls compliant.

Then, when you have 2 properties that only differ in case, the compiler will issue an error. On the other hand, when you have a private field and a public property in the same class, there will be no problems.

(But, I also always prefix my private members with an underscore. It also helps me to make it clear when i read my code that a certain variable is a member field).

link|flag
vote up 1 vote down

I still really like using underscores in front of private fields for the reason Martin mentioned, and also because private fields will then sort together in IntelliSense. This is despite the evilness of Hungarian prefix notations in general.

However, in recent times I find that using the underscore prefix for private members is frowned upon, even though I'm not quite sure why. Perhaps some else knows? Is it just the prefix principle? Or was there something involved with name mangling of generic types that get underscores in them in compiled assemblies or something?

link|flag
vote up 7 vote down

Taken from the Microsoft StyleCop Help file:

TypeName: FieldNamesMustNotBeginWithUnderscore

CheckId: SA1309

Cause: A field name in C# begins with an underscore.

Rule Description:

A violation of this rule occurs when a field name begins with an underscore.

By default, StyleCop disallows the use of underscores, m_, etc., to mark local class fields, in favor of the ‘this.’ prefix. The advantage of using ‘this.’ is that it applies equally to all element types including methods, properties, etc., and not just fields, making all calls to class members instantly recognizable, regardless of which editor is being used to view the code. Another advantage is that it creates a quick, recognizable differentiation between instance members and static members, which will not be prefixed.

If the field or variable name is intended to match the name of an item associated with Win32 or COM, and thus needs to begin with an underscore, place the field or variable within a special NativeMethods class. A NativeMethods class is any class which contains a name ending in NativeMethods, and is intended as a placeholder for Win32 or COM wrappers. StyleCop will ignore this violation if the item is placed within a NativeMethods class.

A different rule description indicates that the preferred practice in addition to the above is to start private fields with lowercase letters, and public ones with uppercase letters.

Edit: As a follow up, StyleCop's project page is located here: http://code.msdn.microsoft.com/sourceanalysis. Reading through the help file gives a lot of insight into why they suggest various stylistic rules.

link|flag
Is this a "just because we say so" kind of rule, or is there something that actually makes it bad to do so? The above rule description really doesn't say either. – peSHIr Jan 16 at 18:10
1  
It's mostly a "best practices" kind of thing. As the rule states, prefixing with "this" can be applied to any non-static member while prefixing with anything else may not be applicable due to language syntax rules. The "this" keyword makes the intended destination trivially clear. – Scott Dorman Jan 16 at 19:08
vote up 0 vote down

After working in a environment that had very specific and very pointless style rules since then I went on to create my own style. This is one type that I've flipped back and forth on alot. I've finally decided private fields will always be _field, local variables will never have _ and will be lower case, variable names for controls will loosely follow Hungarian notation, and parameters will generally be camelCase.

I loathe the this. keyword it just adds too much code noise in my opinion. I love Resharper's remove redundant this. keyword.

link|flag
vote up 0 vote down

I like to use underscores in front of my private fields for two reasons. One has already been mentioned, the fields stand out from their associated properties in code and in Intellisense. The second reason is that I can use the same naming conventions whether I'm coding in VB or C#.

link|flag
vote up 0 vote down

The _fieldName notation for private fields is so easy to break. Using "this." notation is impossible to break. How would you break the _ notation? Observe:

private void MyMethod()
{
  int _myInt = 1; 
  return; 
}

There you go, I just violated your naming convention but it compiles. I'd prefer to have a naming convention that's a) not hungarian and b) explicit. I'm in favor of doing away with Hungarian naming and this qualifies in a way. Instead of an object's type in front of the variable name you have its access level.

link|flag
1  
It's hardly a valid critique of a naming convention to say that it's possible for developers not to follow it. – Robert Rossney Jan 16 at 18:22
1  
Wow, your definition of “easy to break” and mine are, like, complete opposites. Yours means “easy to break intentionally,” while most other people probably mean “easy to break accidentally.” I’ll leave it as an exercise to the reader to figure out which one is more relevant in writing readable code … – Konrad Rudolph Jun 5 at 15:06
@Konrad: You sound pretentious when you say "as an exercise to the reader". This isn't a math textbook. – jcollum Jun 8 at 16:53
vote up 0 vote down

This is my favorite link for a discussion of naming conventions: http://www.irritatedvowel.com/Programming/Standards.aspx

link|flag
vote up 1 vote down

I think that by and large class-level fields are a mistake in the design of the language. I would have preferred it if C#'s properties had their own local scope:

public int Foo
{
   private int foo;
   get
   {
      return foo;
   }
   set
   {
      foo = value;
   }
}

That would make it possible to stop using fields entirely.

The only time I ever prefix a private field with an underscore is when a property requires a separate backing field. That is also the only time I use private fields. (And since I never use protected, internal, or public fields, that's the only time I use fields period.) As far as I'm concerned, if a variable needs to have class scope, it's a property of the class.

link|flag
The C# gang appears to agree with you with the newish private int foo {get; set;} syntax sugar. – Dana Jan 16 at 18:47
Oh, sure; what I'm describing here is totally unworkable without that. – Robert Rossney Jan 17 at 1:07
vote up 4 vote down

I like the underscore, because then I can use the lowercase name as method parameters like this:

public class Person
{
    string _firstName;

    public MyClass(string firstName)
    {
        _firstName = firstName;
    }

    public string FirstName
    {
        get { return _firstName; }
    }
}
link|flag
2  
public string FirstName {get; private set; } – Jason Jun 5 at 15:07
vote up 0 vote down

Lance Fisher / Jan 16 at 19:00 I absolutely agree with you!

jcollum / Jan 16 at 18:11 I disagree. Easy to break? If you write it wrong nobody else can help you. If you'd use refactoring tools like ReSharper you'll see that this. is even easier to break. Btw, why using return at the of the method!?

link|flag
Use comments to reply to individual posts. – Jason Jun 5 at 15:09
only possible after having gained 50 rep ... – MicSim Jun 5 at 15:14
@MicSim: Ah, that doesn't make sense. – Jason Jun 5 at 17:14

Your Answer

Get an OpenID
or

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