Should I agree to ban the "using" directive from my c# projects? - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T21:03:31Zhttp://stackoverflow.com/feeds/question/214825http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects11Should I agree to ban the "using" directive from my c# projects?Marcin K2008-10-18T09:39:11Z2008-10-19T11:51:16Z
<p>My colleague insists on explicitly specifying the namespace in code as opposed to using the <a href="http://msdn.microsoft.com/en-us/library/sf0df423.aspx" rel="nofollow">using directive</a>. In other words he wants to use the fully qualified name for each type every time this type occurs in code. Something like this: </p>
<pre><code>public class MyClass
{
public static void Main()
{
System.Console.WriteLine("Foo");
}
}
</code></pre>
<p>instead of </p>
<pre><code>using System;
public class MyClass
{
public static void Main()
{
Console.WriteLine("Foo");
}
}
</code></pre>
<p>You can imagine the consequences.</p>
<p>The pros he gives:<br />
1. Its simpler to copy and paste code into other source files.<br />
2. It is more readable (you see the namespaces right away). </p>
<p>My cons:<br />
1. I have to write more<br />
2. The code is less readable (I guess de gustibus non disputandum est)<br />
3. No one does it! </p>
<p>What do you think about this?</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214826#21482637Answer by Franci Penov for Should I agree to ban the "using" directive from my c# projects?Franci Penov2008-10-18T09:44:06Z2008-10-18T09:44:06Z<p>If you need to copy and paste code around so much as to actually benefit of having fully qualified types, you've got bigger problems.</p>
<p>Also, do you plan on remembering which namespace every single class is in in order to be able to type it fully qualified?</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214827#2148270Answer by gimel for Should I agree to ban the "using" directive from my c# projects?gimel2008-10-18T09:45:32Z2008-10-19T06:58:09Z<p>The <a href="http://en.wikipedia.org/wiki/Law_of_Demeter" rel="nofollow">Law of Demeter</a> says you should use <em>only one dot</em>:</p>
<blockquote>
<p>For many modern object oriented languages that use a dot as field identifier, the law can be stated simply as "use only one dot". That is, the code "a.b.Method()" breaks the law where "a.Method()" does not.</p>
</blockquote>
<p>Of course, this is not always practical. But long strings of dot-separated identifiers violate accepted practice.</p>
<p>EDIT: This answer seems controversial. I brought the <code>Law of Demeter</code> up mostly as a style guide, and most replies here seem to agree that limiting the number of dots is a good idea. In my opinion, <code>jQuery</code> (and <code>JavaScript</code>) suffer from readability problems, partly because excessive dots creep into any non trivial program .</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214828#2148285Answer by Jesper Blad Jensen aka. Deldy for Should I agree to ban the "using" directive from my c# projects?Jesper Blad Jensen aka. Deldy2008-10-18T09:45:50Z2008-10-18T09:45:50Z<p>Because we have the tool in C# for auto-setting the using statement, by pressing Ctrl+dot - I can't see any reason not to use it. The other "cool" thing here, is:</p>
<p>Think about you have a two namespaces:</p>
<p>ConsoleNamespace1</p>
<p>and</p>
<p>ConsoleNamespace2</p>
<p>Both have a Console class, now you can change all the refferences to ConsoleNamespace2, with just a single line of code - thats cool.</p>
<p>My adwice: Use using if you can, the full if you must. I don't think the fully one, if easier to read. Know your framework, and this will never be a problem.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214829#2148291Answer by Cristian Libardo for Should I agree to ban the "using" directive from my c# projects?Cristian Libardo2008-10-18T09:46:00Z2008-10-18T09:46:00Z<p>Oh boy. One step might be teaching your collegue about ctrl+. It will automatically insert using statements for you.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214838#2148381Answer by Adam Haile for Should I agree to ban the "using" directive from my c# projects?Adam Haile2008-10-18T10:05:09Z2008-10-18T10:05:09Z<p>My general rule is that if I am going to use items from a particular namespace more than a few times, it gets a using directive. However I don't want to clutter up the top of the file with using directives for things that I only use once or twice.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214842#2148427Answer by Richard Harrison for Should I agree to ban the "using" directive from my c# projects?Richard Harrison2008-10-18T10:07:45Z2008-10-18T10:07:45Z<p>Making it easier to move code around by copy and paste is simply a <a href="http://en.wikipedia.org/wiki/Non_sequitur_(logic)" rel="nofollow">non sequitur</a>, and quite possibly a warning sign of potentially dangerous practice. The structure and legibility of code shouldn't be dictated by ease of edit.</p>
<p>If anything it makes the code less readable and more specific - personally I'm not interested where standard objects live, it's akin to addressing your colleague by their complete given name, prefixed with the street address of your workplace.</p>
<p>There are times, however, where occasionally it makes the code more readable, so hard and fast rules are not applicable, just common sense.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214845#2148450Answer by rslite for Should I agree to ban the "using" directive from my c# projects?rslite2008-10-18T10:10:18Z2008-10-18T10:10:18Z<p>I recommend against the proposition of your colleague. For me reading code is much easier if you don't have a long namespace cluttering the line. Just imagine this:</p>
<pre><code>Namespace1.Namespace2.Namespace3.Type var = new Namespace1.Namespace2.Namespace3.Type(par1, par2, par3);
</code></pre>
<p>as opposed to:</p>
<pre><code>Type var = new Type(par1, par2, par3);
</code></pre>
<p>Regarding copy-paste - you do have Shift+Alt+F10 that will add the namespace, so it shouldn't be a problem.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214847#21484719Answer by Robert Rossney for Should I agree to ban the "using" directive from my c# projects?Robert Rossney2008-10-18T10:11:52Z2008-10-18T10:11:52Z<p>What do I think about this? </p>
<p>I think that a person who would come up with an idea like this, and who would justify it the way he has, is very likely to have a number of other fundamental misunderstandings about the C# language and .NET development.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214856#2148562Answer by Will Dean for Should I agree to ban the "using" directive from my c# projects?Will Dean2008-10-18T10:22:23Z2008-10-18T10:22:23Z<p>It's also worth noting that a tool like Resharper (why aren't you already using it?) will add the appropriate 'using' lines for you pretty much automatically.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214870#21487011Answer by Marc Gravell for Should I agree to ban the "using" directive from my c# projects?Marc Gravell2008-10-18T10:37:19Z2008-10-18T12:41:07Z<p>For a slightly different answer: LINQ.</p>
<p>Extension methods are obtained only via "using" statements. So either the query syntax or the fluent interface will <em>only</em> work with the right "using" statements.</p>
<p>Even without LINQ, I'd say use "using"... reasoning that the more you can understand in fewer characters, the better. Some namespaces are very deep, but add no value to your code.</p>
<p>There are other extension methods too (not just LINQ) that would suffer the same; sure, you can use the static class, but the fluent interface is more expressive.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214872#2148721Answer by Unsliced for Should I agree to ban the "using" directive from my c# projects?Unsliced2008-10-18T10:39:11Z2008-10-18T10:39:11Z<p>Install ReSharper on you machines. Sit back and let it guide your colleague to righteousness. Seriously, there are bigger battles but this is the kind of coder to avoid if it takes more than two minutes to try to educate. </p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214882#2148822Answer by RB for Should I agree to ban the "using" directive from my c# projects?RB2008-10-18T10:47:45Z2008-10-18T10:47:45Z<p>One of the reasons you use "using" is that it tells anyone reading the source the sort of things your class will be doing. Using System.IO tells a reader you're doing I/O operations, for example.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/214945#2149451Answer by paul.richardson for Should I agree to ban the "using" directive from my c# projects?paul.richardson2008-10-18T11:49:29Z2008-10-18T11:49:29Z<p>you can also use aliases...</p>
<p>using diagAlias = System.Diagnostics;</p>
<p>namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
diagAlias.Debug.Write("");
}
}
}</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215005#2150058Answer by Kibbee for Should I agree to ban the "using" directive from my c# projects?Kibbee2008-10-18T12:57:06Z2008-10-18T12:57:06Z<p>The biggest problem I find with not using the "using" directive isn't on instantiantion and definition of classes. It's on passing in values to functions that are defined defined in the namespace. Compare these two pieces of code (VB.Net, because that's what I know, but you get the picture).</p>
<pre><code>Module Module1
Sub Main()
Dim Rgx As New System.Text.RegularExpressions.Regex("Pattern", _
System.Text.RegularExpressions.RegexOptions.IgnoreCase _
Or System.Text.RegularExpressions.RegexOptions.Singleline _
Or System.Text.RegularExpressions.RegexOptions.IgnorePatternWhitespace)
For Each result As System.Text.RegularExpressions.Match In Rgx.Matches("Find pattern here.")
'Do Something
Next
End Sub
End Module
</code></pre>
<p>And this</p>
<pre><code>Imports System.Text.RegularExpressions
Module Module1
Sub Main()
Dim Rgx As New Regex("Pattern", _
RegexOptions.IgnoreCase _
Or RegexOptions.Singleline _
Or RegexOptions.IgnorePatternWhitespace)
For Each result As Match In Rgx.Matches("Find pattern here.")
'Do Something
Next
End Sub
End Module
</code></pre>
<p>In cases like this where lots of enums are used, as well as declaring your variables inline in a for loop, to reduce scope, not using "using" or "imports" in the case of vb.Net, can lead to really bad readability.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215015#2150150Answer by David Robbins for Should I agree to ban the "using" directive from my c# projects?David Robbins2008-10-18T13:04:36Z2008-10-18T13:04:36Z<p>You really want to maintain code that way? Even with intellisense all that typing is not going to be productive.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215025#2150250Answer by FOR for Should I agree to ban the "using" directive from my c# projects?FOR2008-10-18T13:16:20Z2008-10-18T13:16:20Z<p>Instead of 'copy-n-paste' I call it 'copy-n-rape' because the code is abused 99.9% of the times when it is put through this process. So there, that's my answer to your colleague's #1 justification for that approach.</p>
<p>On a side note, tools like Resharper will add the using statements at the top when you add code that needs them to your code (so even if you 'copy-n-rape' code like that you can do so easily).</p>
<p>Personal preferences aside, I think your justifications are much more valuable than his, so even assuming they are all valid points, I'd still reccomend writing the using statements at the top. I would not make it a 'ban' though, since I see coding standard as guidelines rather than rules. Depending on your team size it might be very hard to enforce things like that (or how many spaces for indentation, or indentation styles, etc etc).</p>
<p>Make it a guideline so that all the other developers feel free to replcae the fully qualified names with the shorter versions and, over time, the code base will fall in line with the guideline. Keep an eye out for people taking time away from doing work to simply change all the occurrences of one style to the other - 'cause that's not very productive if you're not doing anything else.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215295#2152955Answer by Kyralessa for Should I agree to ban the "using" directive from my c# projects?Kyralessa2008-10-18T17:14:57Z2008-10-18T17:14:57Z<p>The minute your colleague said "copy-and-paste code", he lost all credibility.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215353#2153531Answer by mnour for Should I agree to ban the "using" directive from my c# projects?mnour2008-10-18T18:08:01Z2008-10-19T11:15:55Z<p>I think with the intellisense features in Visual Studio and using some third-party products like Resharper, we no longer care about either to make our code fully qualified or not. It became no longer time consuming to resolve the namespaces when you copy and paste your code. </p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215426#2154260Answer by Paul Mendoza for Should I agree to ban the "using" directive from my c# projects?Paul Mendoza2008-10-18T18:55:30Z2008-10-18T18:55:30Z<p>He might have a point with somethings. For instance, at a company I work at we have a lot of code generated classes and so all of our code generated classes we use the fully qualified names for classes in order to avoid any potential conflicts.</p>
<p>With all the standard .NET classes that we have, we just use the using statements.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215734#2157340Answer by Jay Bazuzi for Should I agree to ban the "using" directive from my c# projects?Jay Bazuzi2008-10-18T23:42:30Z2008-10-18T23:42:30Z<p>In a system like .NET, where there are types in namespaces, you have to make a decision: is a namespace part of the name, or is it an organizational tool for types?</p>
<p>Some systems choose the first option. Then, your <code>using</code> directives would be able shortening the names that you use the most often.</p>
<p>In .NET, it's the latter. For example, consider <code>System.Xml.Serialization.XmlSerializationReader</code>. Observe the duplication between the namespace and the type. That's because in this model, type names must be unique, even across namespaces.</p>
<p>If I remember correctly, you can find this described by the CLR team here: <a href="http://blogs.msdn.com/kcwalina/archive/2007/06/01/FDGLecture.aspx" rel="nofollow">http://blogs.msdn.com/kcwalina/archive/2007/06/01/FDGLecture.aspx</a></p>
<blockquote>
<p>Its simpler to copy and paste code into other source files.</p>
</blockquote>
<p>True, but if you're copy/pasting a lot of code, you're probably doing it wrong.</p>
<blockquote>
<p>It is more readable (you see the namespaces right away)</p>
</blockquote>
<p>Seeing the namespaces isn't important, since, at least when you're following Microsoft's guidelines, type names are unique already; the namespace doesn't really provide you with useful information.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/215750#2157500Answer by Slace for Should I agree to ban the "using" directive from my c# projects?Slace2008-10-18T23:57:56Z2008-10-18T23:57:56Z<p>I'm someone who has a tendancy to fully qualify namespaces. I do it when I'm using components which i'm not familiar with/ haven't used for a long time. I helps me remember what's in that namespace so next time I'm looking for it/ related classes.</p>
<p>It also helps me twig to whether I have the appropriate references in the project already. Like if I write out System.Web.UI but can't find Extensions then I know I forgot/ who ever set up the project forgot to put in the ASP.NET AJAX references.</p>
<p>I'm doing it less and less though these days as I'm using the shortcut to qualify a class (Ctrl + .). If you type out the name of the class (correctly cased) and press that shortcut you can easily fully quality/ add a using statement.</p>
<p>It's great for the StringBuilder, I never seem to have System.Text, so I just type StringBuilder -> Ctrl + . and there we go, I've added the using.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/216101#2161010Answer by Adron for Should I agree to ban the "using" directive from my c# projects?Adron2008-10-19T06:17:07Z2008-10-19T06:17:07Z<p>"The minute your colleague said "copy-and-paste code", he lost all credibility." ditto.</p>
<p>"The Law of Demeter says..." ditto</p>
<p>...and I add. That's just absurd, not using using statements. Get ReSharper, find some way to teach this fellow how it's done, and if it doesn't seem to take effect - with the reasons given, it's time to start looking into a different job. Just the correlations of what goes along with such notions as not using using statements is scary. You'll be stuck working 16 hr days fixing mess if that's one of the rules. There is no telling what other type of affront to common sense and logic you'll face next.</p>
<p>Seriously though, this shouldn't even be brought up with tools like ReSharper available. Money is being wasted, buy ReSharper, do code cleanup, and get back to making usable software. :) That's my 2 cents.</p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects/216317#2163170Answer by Mauro for Should I agree to ban the "using" directive from my c# projects?Mauro2008-10-19T11:51:16Z2008-10-19T11:51:16Z<p>if you are repeatedly copying and pasting code, doesn't that point to creating a standard DLL to include into each of your projects? </p>
<p>I've worked on projects using both methods before and have to say having the "Using" statements makes sense to me, it cuts down on the code, makes it more readable and your compiler will ultimately optimise the code in the right way. The only time you may have an issue is if you have two classes from two namespaces which have the same name, then you would have to use the fully qualified name...but thats the exception rather than the rule.</p>