using Foo.Uber;
namespace MyStuff.Foo
{
class SomeClass{
void DoStuff(){
// I want to reference the outer "absolute" Foo.Uber
// but the compiler thinks I'm refering to MyStuff.Foo.Uber
var x = Foo.Uber.Bar();
}
}
}
Run Code Online (Sandbox Code Playgroud)
我该怎么解决这个问题?只是在我的命名空间中移动using语句也无济于事.