New Features in C# 2.0—Global Namespace: What about
Microsoft .NET Framework, ASP.NET, Visual C# (CSharp, C Sharp, C-Sharp) Developer Training, Visual Studio
| CSharp-Online.NET:Tutorials |
| C# Tutorials |
| © 2005 O'Reilly Media, Inc. |
What about
other uses for the double-colon (::) operator?
The :: operator is the namespace alias qualifier. It always appears
between two identifiers:
identifierOne::identifierTwo
If identifierOne is the global namespace, this operator is used to find
identifierTwo within the global namespace. But if identifierOne is any
namespace other than the global namespace, the operator serves to
restrict the lookup of identifierOne.
|

