Language Basics C# Book

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{

}
}
}