.Net 2.0 新功能:命名空间别名限定符(namespace alias qualifier)

命名空间别名限定符(namespace alias qualifier)

<!--[if !supportLists]-->1. 当成员可能被同名的其他实体隐藏时,能够访问全局命名空间中的成员非常有用。

<!--[endif]-->

<!--[if !supportLists]-->2. 别名限定符是双冒号(::

<!--[endif]-->

<!--[if !supportLists]-->3. 命名空间别名限定符可以是global.这将调用全局命名空间中的查找,而不是在别名命名空间中查找。

<!--[endif]-->

public class System

... {



}


global ::System.Console.Write( " 限定符 " );

说明:

1.x时,如果定义一个和系统命名空间名称一样的类,将会混乱系统的命名空间。比如在1.x定义System类,那么系统的System命名空间将会查找不到。现在2.0,在使用这个别名限定符后,我们也可以写一个自己的System类了,而系统命名空间的System命名空间,我们使用global:: System来访问。这就是别名限定符。

using abc = System.Collections;

abc::Hashtablehast
= new abc::Hashtable();



你可能感兴趣的:(.net)