My colleague insist on explicitly specifying the namespace in code and to using the *using* directive. In other words he wants to use qualified name for each type every time this type occurs in code. Something like that:
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 around.
2. It is more readable (you see the namespaces right away).
My cons:
1. I have to write more and I have too small hands for Alt + F10 is ;-)
2. The code is less readable (I guess de gustibus non disputandum est)
3. No one does it!
What do you thing about this?