Naming conventions: Guidelines for verbs/nouns and english grammar usage - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T07:49:20Zhttp://stackoverflow.com/feeds/question/412839http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage6Naming conventions: Guidelines for verbs/nouns and english grammar usageChris S2009-01-05T11:18:51Z2009-01-05T11:56:21Z
<p>Can anyone point me to a site, or give me some wisdom on how you go about choosing names for interfaces, classes and perhaps even methods and properties relating to what that object or method does?</p>
<p>This is specifically for Microsoft development, so Java-esque "doGet" and so on isn't really used, however some general rules that cross language barriers must (I would've thought) exist.</p>
<p>An example might help: I have 4 choices of names for an interface:</p>
<pre><code>IGroupedItem
IGroupableItem
IDataEntity
IGroupedEntity
</code></pre>
<p>They all contain an adjective and the noun, or just a noun. Looking at the .NET framework it seems like there must be some kind of ruleset for this, for consistency? Aside from the obvious verbs for methods.</p>
<p><strong>Edit:</strong> Though the example is an interface, I'm not limiting this to just interfaces. The general guideline is classes are nouns, methods verbs, properties nouns. I suppose what I mean is choice of the synonym. Is throwing "Entity" everywhere wrong</p>
http://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage/412846#4128462Answer by Spodi for Naming conventions: Guidelines for verbs/nouns and english grammar usageSpodi2009-01-05T11:20:46Z2009-01-05T11:20:46Z<p>MSDN has an article just on <a href="http://msdn.microsoft.com/en-us/library/8bc1fexb(VS.71).aspx" rel="nofollow">Interface Naming Guidelines</a> that may help you out. If you want the naming conventions of stuff other than interfaces, along with many other naming and design guidelines, you can find that all on MSDN, too.</p>
http://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage/412848#4128481Answer by S.Lott for Naming conventions: Guidelines for verbs/nouns and english grammar usageS.Lott2009-01-05T11:21:28Z2009-01-05T11:56:21Z<p>Interfaces are things a class is capable of doing. Not what it <strong>is</strong>, but what it can <strong>do</strong>.</p>
<pre><code>IGroupableItem
</code></pre>
<p>Other names describe what things are or are too vague to be useful. </p>
<p>Specifically, "IDataEntity" is largely meaningless. After all, everything's a data entity.</p>
http://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage/412870#4128705Answer by Rumen Georgiev for Naming conventions: Guidelines for verbs/nouns and english grammar usageRumen Georgiev2009-01-05T11:37:48Z2009-01-05T11:37:48Z<p>Look at the <a href="http://msdn.microsoft.com/en-us/library/xzf533w0(VS.71).aspx" rel="nofollow">MSDN articles</a> for naming guidelines. In short: </p>
<ul>
<li>Use nouns for class names and property names (it's obvious)</li>
<li>For interface names, start with I and use nouns and/or adjectives to describe behavior</li>
<li>Use verbs for method names to describe action</li>
</ul>
<p>For your example - IGroupableItem.</p>
http://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage/412872#4128721Answer by Jon Skeet for Naming conventions: Guidelines for verbs/nouns and english grammar usageJon Skeet2009-01-05T11:38:30Z2009-01-05T11:38:30Z<p>This is the same material as Spodi's answer, but MSDN's <a href="http://msdn.microsoft.com/en-us/library/czefa0ke.aspx" rel="nofollow">Design Guidelines for Class Library Developers</a> are mostly excellent, covering <a href="http://msdn.microsoft.com/en-us/library/xzf533w0.aspx" rel="nofollow">naming</a> and much, much more.</p>
http://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage/412895#4128950Answer by Malx for Naming conventions: Guidelines for verbs/nouns and english grammar usageMalx2009-01-05T11:49:39Z2009-01-05T11:49:39Z<p>There is nice article
<a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Making Wrong Code Look Wrong</a>
by Joel Spolsky. It tells about not so popular, but very handy naming convention.</p>
http://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage/412896#4128960Answer by Chris for Naming conventions: Guidelines for verbs/nouns and english grammar usageChris2009-01-05T11:49:40Z2009-01-05T11:49:40Z<p>Try this....</p>
<p>Main Site: <a href="http://www.ssw.com.au/ssw/standards/Default.aspx" rel="nofollow">http://www.ssw.com.au/ssw/standards/Default.aspx</a><br>
Code Rules: <a href="http://www.ssw.com.au/ssw/Standards/Rules/RulestoBetterCode.aspx" rel="nofollow">http://www.ssw.com.au/ssw/Standards/Rules/RulestoBetterCode.aspx</a></p>
http://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage/412908#4129081Answer by Nick Crowther for Naming conventions: Guidelines for verbs/nouns and english grammar usageNick Crowther2009-01-05T11:53:40Z2009-01-05T11:53:40Z<p>As well as the MSDN Guidelines, there is a C# Coding Standards document from <a href="http://www.idesign.net" rel="nofollow">IDesign</a> by Juval Lowy that is quite helpful (don't know if/how much this differs from MSDN).</p>
<p><a href="http://www.idesign.net/idesign/download/IDesign%20CSharp%20Coding%20Standard.zip" rel="nofollow">C# Coding Standards</a></p>