Naming Conventions in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T22:27:44Zhttp://stackoverflow.com/feeds/question/306894http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/306894/naming-conventions-in-c5Naming Conventions in C#GregD2008-11-20T21:24:12Z2008-11-20T21:57:03Z
<p>As a beginning programmer, I'm trying to settle on a standard naming convention for myself. I realize that it's personal preference, but I was trying to get some ideas from some of you (well a LOT of you) who are much smarter than myself.</p>
<p>I'm not talking about camel notation but rather how do you name your variables, etc. IMHO, var_Quantity is much more descriptive than Q or varQ. However, how do you keep the variable from becoming too long. I've tried to be more descriptive with naming my controls, but I've ended up with some like "rtxtboxAddrLine1" for a RadTextBox that holds address line 1. Too me,that is unmanageable, although it's pretty clear what that control is.</p>
<p>I'm just curious if you have some guides that you follow or am I left up to my own devices?</p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/306908#3069080Answer by Jeremy Reagan for Naming Conventions in C#Jeremy Reagan2008-11-20T21:28:00Z2008-11-20T21:28:00Z<p>The more descriptive the better, you will find that the length isn't as important as remembering what that control/variable did five years down the road.</p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/306913#3069131Answer by Craig Shearer for Naming Conventions in C#Craig Shearer2008-11-20T21:29:25Z2008-11-20T21:29:25Z<p>There are a few good coding standards documents available online - David Lance wrote one:
<a href="http://weblogs.asp.net/lhunt/attachment/591275.ashx" rel="nofollow">http://weblogs.asp.net/lhunt/attachment/591275.ashx</a></p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/306923#30692311Answer by Greg Beech for Naming Conventions in C#Greg Beech2008-11-20T21:33:25Z2008-11-20T21:33:25Z<p>Some <a href="http://msdn.microsoft.com/en-us/library/ms229045.aspx" rel="nofollow">basic rules can be found here</a>. And <a href="http://msdn.microsoft.com/en-us/library/ms229002.aspx" rel="nofollow">much more extended rules can be found here</a>. These are the official guidelines from the Microsoft framework designers.</p>
<p>As for your example, the variable should should be called simply <code>quantity</code>.</p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/306929#3069290Answer by tamberg for Naming Conventions in C#tamberg2008-11-20T21:36:12Z2008-11-20T21:36:12Z<p>For .NET API design (and some general C# guidelines) check Krzysztof Cwalina and Brad Abrams' <a href="http://rads.stackoverflow.com/amzn/click/0321246756" rel="nofollow">Framework Design Guidelines</a></p>
<p>Regards,
tamberg</p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/306930#3069301Answer by Steve Morgan for Naming Conventions in C#Steve Morgan2008-11-20T21:36:27Z2008-11-20T21:36:27Z<p>I'd recommend that you use Microsoft's own guidelines as a starting point. Typically, most companies start there (in my experience, anyway).</p>
<p><a href="http://msdn.microsoft.com/en-us/library/czefa0ke(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/czefa0ke(VS.71).aspx</a></p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/306932#3069324Answer by plinth for Naming Conventions in C#plinth2008-11-20T21:36:43Z2008-11-20T21:36:43Z<p>In this case, I think you'd be better off naming it as primaryAddressLine or firstAddressLine. Here's why - rtxt as a prefix uselessly tells you the type. Intellisense will help you with the type and is immune to changes made to the actual object type. Calling it firstAddressLine keeps it away from the (poor) convention of using 1, 2, 3...on the end of variable names to indicate that for some reason you needed more of them instead of a collection.</p>
<p>Name it for what it represents/how it's meant to be interpreted or used not for its data type, and in naming it don't abbreviate if you don't need to.</p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/306953#3069530Answer by seanb for Naming Conventions in C#seanb2008-11-20T21:44:01Z2008-11-20T21:44:01Z<p>I generally try to follow the microsoft guidelines, with a few very old habits thrown in.<br />
So, I still can't get out of the habit of prefixing privates with an underscore _privateMember.<br />
I'm old, and that got burnt into my brain. </p>
<p>As far as prefixing control widgets, I have found that if you get too descriptive, it can become painful, in the case of changing the UI down the track. </p>
<p>e.g. you have something called ddlProductLine for a dropdown list, and then that has to change to a radio button group, your prefixing convention starts to be more PITA than helpful. </p>
<p>When you have a lot of widgets to work with, sometimes a more generic prefix like uiCtl can help with the clutter, but still make sense if you have to change widget type. </p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/306963#3069630Answer by CMS for Naming Conventions in C#CMS2008-11-20T21:45:35Z2008-11-20T21:45:35Z<p>I like this document:</p>
<p><a href="http://weblogs.asp.net/lhunt/attachment/591275.ashx" rel="nofollow">C# Coding Standars for .NET</a> (zip)</p>
<p>It's a good compilation of best practices and coding style guidelines.</p>
http://stackoverflow.com/questions/306894/naming-conventions-in-c/307003#3070035Answer by Kyralessa for Naming Conventions in C#Kyralessa2008-11-20T21:57:03Z2008-11-20T21:57:03Z<p>The <a href="http://msdn.microsoft.com/en-us/library/ms229002.aspx" rel="nofollow">Guidelines for Names</a> is the best starting point. But as in other areas of life, once you know the rules, you begin to know where it's reasonable to break them.</p>
<p>I never use the old Hungarian notation that calls things <code>strFirstName</code>, <code>intCount</code>, and the like; but I still use it on controls: <code>txtFirstName</code>, <code>btnVerifyData</code>, etc. Reasons include:</p>
<ul>
<li>I'm not that likely to change the type of a control</li>
<li>If I <em>do</em> change the type of a control, I'll have to change a lot of things, not just the name, so changing the name too is no big deal</li>
<li>They're far easier to find with Intellisense.</li>
</ul>
<p>In addition, I'm quite likely to do the same thing to many of the TextBoxes or ComboBoxes on a page or form, whereas I'm not likely to do something to all the ints or strings referred to on a page or form. So it helps to be able to quickly find all the TextBoxes with their <code>txt</code> prefix.</p>
<p>There are others, though, that adamantly oppose Hungarian even in this case, and I'm sure they have their reasons. Regardless of your personal style, you may find yourself working on a team that has a very different style. In which case, just do what they do; it's very, very rarely worth making an issue of it. The only time I'd do so is if their style leads to a lot of bugs, but off the top of my head I can't think of a case that would cause that.</p>