Declaring your own namespaces can help you control the scope of class and method names in larger programming projects. Namespaces have the following properties:
They organize large code projects.
They're delimited by using the . operator.
The using directive avoids the requirement to specify the name of the namespace for every class.
Use the namespace keyword to declare a namespace, as in the following example: