You need to use the global keyword. That forces the namespace resolution to start at the very top. It’s mostly used in generated code to be doubly sure the right namespace is referenced.
global::System.Foo.Bar;
Some MSDN documentation on it: http://msdn.microsoft.com/en-us/library/c3ay4x3d.aspx