Question
What is the purpose of :: in C#?
I have seen double colons (::
) in generated code. I was wondering what its purpose is?
Question
I have seen double colons (::
) in generated code. I was wondering what its purpose is?
Solution
It's the namespace alias qualifier operator. Citing from the linked-to MSDN page:
The namespace alias qualifier (
::
) is used to look up identifiers. It is always positioned between two identifiers, as in this example:global::System.Console.WriteLine("Hello World");
Solution
This is the namespace alias qualifier. It's used when there's the potential for two different types with the same name and same namespace (coming from different assemblies). E.g. our ORM product talks to VistaDB 3 and VistaDB 4. In both cases the connection class is VistaDB.Provider.VistaDBConnection. So we extern alias
the VistaDB 3 assembly to vdb3
and the VistaDB 4 assembly to vdb4
and can now disambiguate the connection classes as vdb3::VistaDB.Provider.VistaDBConnection
and vdb4::VistaDB.Provider.VistaDBConnection
. Without the alias qualifier, these would raise "ambiguous reference" compiler errors.