How can I disable automatic namespace resolution in Intellisense for C# (Visual Studio 2010)?
This might sound strange but I need to have the fully qualified names show up as follows:
System.Windows.Forms.Form form = new System.Windows.Forms.Form();
Instead of:
Form form = new Form();
I could not find similar questions. Is this possible in VS2010?
UPDATE: I am aware about readability issues and when sharing code, qualified can be stripped easily. It is just a matter of preference in writing code that way.