Namespace Rule of Thumb - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:52:44Z http://stackoverflow.com/feeds/question/431911 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/431911/namespace-rule-of-thumb 5 Namespace Rule of Thumb Frank 2009-01-10T22:52:37Z 2009-01-10T23:28:59Z <p>Is there a general rule of thumb as to how many classes, interfaces etc should go in to a given name space before the items should be further classfied in to a new name space? Like a best practice or a community preference? Or is this all personal preference? </p> <pre><code>namespace: MyExample.Namespace interface1 interface2 interface3 interface4 interface5 interface6 interface7 interface8 interface9 </code></pre> <p>Or</p> <pre><code>namespace: MyExample.Namespace.Group1 interface1 interface2 interface3 namespace: MyExample.Namespace.Group2 interface4 interface5 interface6 namespace: MyExample.Namespace.Group3 interface7 interface8 interface9 </code></pre> http://stackoverflow.com/questions/431911/namespace-rule-of-thumb/431927#431927 1 Answer by Andrew Hare for Namespace Rule of Thumb Andrew Hare 2009-01-10T23:04:33Z 2009-01-10T23:04:33Z <p>It is generally considered bad form to have a small number of classes in a namespace. I have always attributed this to the fact that many namespaces leads to confusion. </p> <p>I would suggest that you break the classes into logical namespaces being as reasonable and practical as possible. However if you end up with only one or two classes per namespace then you might be fracturing too much and should think about consolidating.</p> http://stackoverflow.com/questions/431911/namespace-rule-of-thumb/431933#431933 2 Answer by Steve S for Namespace Rule of Thumb Steve S 2009-01-10T23:07:32Z 2009-01-10T23:07:32Z <p>I don't know of any rule of thumb for the number of items, but those kinds of rules tend to be over-generalized garbage anyway. Make sure there is a logical connection between items in the same namespace. If a namespace is getting too crowded (unlikely, I hope), or the things in the namespace are only loosely related at best, consider breaking it up into multiple namespaces.</p> http://stackoverflow.com/questions/431911/namespace-rule-of-thumb/431943#431943 2 Answer by Checkers for Namespace Rule of Thumb Checkers 2009-01-10T23:15:15Z 2009-01-10T23:15:15Z <p>If building a library or a module, it is generally better to use only one namespace, since the primary function of a namespace is to avoid name collisions and you have the control over what names get assigned to classes and interfaces.</p> http://stackoverflow.com/questions/431911/namespace-rule-of-thumb/431953#431953 3 Answer by Perpetualcoder for Namespace Rule of Thumb Perpetualcoder 2009-01-10T23:21:08Z 2009-01-10T23:21:08Z <p>I have not seen any rule of thumb at any reliable source but there are a few common preferences that I haven seen while working with most developers. There are a few things that help you make the namespaces.</p> <ol> <li>Domain of the class</li> <li>Is it a class or an interface (I have seen some developers prefer namespaces like ShopApp.Model.Interfaces ). Works really well if your interfaces are some service or data contract.</li> <li>Dont have namespaces that are too deep, 3 (.) is enough. More than that may get annoying.</li> <li>Be open to reorganize namespace if at anytime u feel it has become illogical or hard to manage.</li> <li>Do not create namespaces just for the sake of it.</li> </ol> <p>Happy Coding!!!</p> http://stackoverflow.com/questions/431911/namespace-rule-of-thumb/431964#431964 1 Answer by Konrad Rudolph for Namespace Rule of Thumb Konrad Rudolph 2009-01-10T23:28:59Z 2009-01-10T23:28:59Z <p>I would argue that the namespace hierarchy should only be gouverned by considerations of design and the hierarchy of the model/API.</p> <p>If one namespace sports huge number of unrelated classes, rethink your design.</p> <p>Contrary to what Andrew said, I would <em>not</em> worry about namespaces containing few classes – although it's of course true that the hierarchy should only be as fine-grained as needed to express the design.</p> <p>On the other hand, I find it completely reasonable for a namespace to contain only one highly special class, or perhaps just a very small set of types, of which one encodes the task and the others provide an API (exceptions, enums for arguments …).</p> <p>As an example, take <code>System.Text.RegularExpressions</code> (in .NET). Granted, slightly more than one class, but only just.</p>