vote up 2 vote down star

Hello!

I have this class:

class DoSomething
{
    private int timesDone;
    ...
}

Which is the right way to named variable 'timesDone'?

Sometimes I see named as m_timesDone. Is this correct? Where I can find information about naming guidelines?

Thank you!

flag

m_, s_, etc. are discouraged for public members by the guidelines cedrou pointed you to. I don't think the official guidelines say anything about private fields. I usually just use timesDone for private fields and TimesDone for the exposing property. When I'm setting the field in a constructor, I call the parameter timesDone and refer to the field as this.timesDone. I find _timesDone for the field, timesDone for the parameter and TimesDone for the property an acceptable combination as well. But this is all just my opinion. You should form your own. :) – Joren Sep 27 at 7:24

7 Answers

vote up 2 vote down check

According to MS standards your code is OK. Having prefixes as m_ is not really necessary when you have advanced IDE. However short prefix like _ can be used to take advantage of auto complete feature to quickly sort out class members.

I would recommend you to get a copy of "Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries" book to learn more on MS standards

link|flag
the m_ or _ or whatever is necessary if you don't feel like prefacing each variable with 'this' – Ed Swangren Sep 27 at 7:23
@EdSwangren, it is very unusual situation when you have to use "this." construction. if you are using descriptive names you will find that the only place you need it (but not required to) is constructor – aku Sep 27 at 7:26
Yep - MS does not have guidelines for private fields. We use underscore. Definitely get Framework Design Guidelines - note that there is a second edition: amazon.com/Framework-Design-Guidelines-Convention… – TrueWill Sep 27 at 14:57
I'm reading this book now and it said that all identifiers uses Pascal notation except parameters that use camel notation. I haven't see anything about private fields. – VansFannel Sep 27 at 17:16
@aku: I don't agree. Say I have a private instance field name, and a constructor which takes a parameter "name", or a method, etc. I would run into it all of the time if I used that convention. – Ed Swangren Sep 27 at 19:24
show 3 more comments
vote up 2 vote down

You can find some information directly on the MSDN site: http://msdn.microsoft.com/en-us/library/ms229002.aspx

link|flag
This is the new version: msdn.microsoft.com/en-us/library/… – Joren Sep 27 at 7:19
1  
Of course, they do not seem to specify a casing convention for private instance variables :) – Ed Swangren Sep 27 at 7:22
True, they don't. – Joren Sep 27 at 7:57
vote up 5 vote down

There is no universal right way. Chose a naming convention of your liking and stick with it.

link|flag
Or, better yet, use one to the liking of your entire team. Standards should be a collaborative effort and not a one person dictation - unless you are the only person on the team, that is. – joseph.ferris Oct 8 at 17:59
I totally agree. Also you should look around for examples of good conventions just so you don't have to make some silly mistakes. – Jonas Elfström Oct 8 at 22:35
vote up 2 vote down

Many people do as you have it there. You would then reference it as

this.timesDone = someInt

However, I don't like this because I am not a fan of typing 'this' to avoid clashes with method parameter names. As long as it is readable and consistent you will be fine.

link|flag
+1 - THANK you! I got hammered on another thread for daring to say that you don't need "this" most of the time. – TrueWill Sep 27 at 14:58
vote up 4 vote down

Definitely do not use m_timesDone.

Simply put "private int timesDone".

You can learn about how to name variables by reading some good books such as Code Complete.

link|flag
1  
Uh...why not? Sounds a bit dogmatic to me, -1 – Ed Swangren Sep 27 at 19:22
It's against the coding guidelines. It isn't the way C# is written. Just like you don't start methods out with lowercase letters. – GordonG Sep 28 at 3:13
vote up 2 vote down

The convention of prefacing member fields with m_ comes from the early days of C++, when Hungarian notation was popular. It is not a C# convention, and since most C# code is written using a recent Visual Studio it adds visual noise without any corresponding advantage, because you can easily see the scope of a variable anyway. Do not use m_.

The lone example of Hungarian notation that has found its way into C# is the practice of prefacing interface class names with I, such as IDisposable.

link|flag
2  
Many people also habitually start type parameters with T, which is somewhat Hungarianesque. – Eric Lippert Sep 27 at 16:32
@Eric, is that something to be avoided in your opinion? Isn't this what MS does too in the BCL? – Joan Venge Sep 30 at 22:22
vote up 0 vote down

The Strategy usually adopted is :

For Class & Method: Pascal Casing

e.g.

public class Program
 {
 }

e.g

public void DoSomething() { }

For Variables: Camel Casing e.g. timesDown

Local Variables:

   aTimesDown

Global Variable:

myTimesDown

I hope this may help you :)

link|flag
1  
NB These apply to public/protected members and public non-member classes. There is no guidance on private members. – Richard Sep 27 at 8:58

Your Answer

Get an OpenID
or

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