My colleague insists on explicitly specifying the namespace in code as opposed to using the [using directive][1]. In other words he wants to use the fully qualified name for each type every time this type occurs in code. Something like this: 

    public class MyClass
    {
    	public static void Main()
    	{
    		System.Console.WriteLine("Foo");
    	}
    }

instead of 

    using System;
    public class MyClass
    {
    	public static void Main()
    	{
    		Console.WriteLine("Foo");
    	}
    }

You can imagine the consequences.

The pros he gives:    
1. Its simpler to copy and paste code into other source files.  
2. It is more readable (you see the namespaces right away).  

My cons:  
1. I have to write more  
2. The code is less readable (I guess de gustibus non disputandum est)  
3. No one does it!  

What do you think about this?


  [1]: http://msdn.microsoft.com/en-us/library/sf0df423.aspx