Naming conventions: Guidelines for verbs/nouns and english grammar usage - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T07:49:20Z http://stackoverflow.com/feeds/question/412839 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/412839/naming-conventions-guidelines-for-verbs-nouns-and-english-grammar-usage 6 Naming conventions: Guidelines for verbs/nouns and english grammar usage Chris S 2009-01-05T11:18:51Z 2009-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#412846 2 Answer by Spodi for Naming conventions: Guidelines for verbs/nouns and english grammar usage Spodi 2009-01-05T11:20:46Z 2009-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#412848 1 Answer by S.Lott for Naming conventions: Guidelines for verbs/nouns and english grammar usage S.Lott 2009-01-05T11:21:28Z 2009-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#412870 5 Answer by Rumen Georgiev for Naming conventions: Guidelines for verbs/nouns and english grammar usage Rumen Georgiev 2009-01-05T11:37:48Z 2009-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#412872 1 Answer by Jon Skeet for Naming conventions: Guidelines for verbs/nouns and english grammar usage Jon Skeet 2009-01-05T11:38:30Z 2009-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#412895 0 Answer by Malx for Naming conventions: Guidelines for verbs/nouns and english grammar usage Malx 2009-01-05T11:49:39Z 2009-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#412896 0 Answer by Chris for Naming conventions: Guidelines for verbs/nouns and english grammar usage Chris 2009-01-05T11:49:40Z 2009-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#412908 1 Answer by Nick Crowther for Naming conventions: Guidelines for verbs/nouns and english grammar usage Nick Crowther 2009-01-05T11:53:40Z 2009-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>