show/hide this revision's text 6 corrected spelling, improved formatting

My colleague insists on explicitly specifying the namespace in code as opposed to using the using directive. 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 thing think about this?

show/hide this revision's text 5 Changed title to be accurate

Should I agree to ban the "using" statement directive from my c# projects?

show/hide this revision's text 4 edited title

Should I agree to ban the "using" statement in from my c# projects?

show/hide this revision's text 3 fixed grammar and typos
show/hide this revision's text 2 Proof the title
show/hide this revision's text 1