将using语句放在命名空间中会使其成为该命名空间的本地,在命名空间之外意味着文件中的任何内容都可以引用它.编译器将始终首先搜索最内层命名空间.
Stylecop促进在命名空间中放置"using"语句,并且Microsoft声称将using语句放在命名空间内允许CLR在运行时延迟加载.然而,有许多测试质疑这一点.
Using System; namespace test { //Can Ref System } namespace test2 { using System2; //can Reference anything from test2, System2 and System //will look for a reference in test, then System2 then System }