I guess you know the way you can define aliases with the using statement:
using SWF = System.Windows.Forms;
Then you can use the shortcut SWF to reference a type in the namespace. In C# 1, the syntax was like this:
SWF.Button button = new SWF.Button();
Obviously this could be ambiguous, because there could have been any kind of different [...]