Mega Code Archive

 
Categories / C# Book / 01 Language Basics
 

0206 namespace hierarchy

C# uses dot to indicate the namespace hierarchy. The following two code blocks have the same namespaces. namespace A.B.C{ } namespace A{ namespace B{ namespace C{ } } }