I read in http://www.dotnetperls.com/namespace the following:
Namespaces are not essential for C# programs. They are usually used to make code clearer.
This confused me alot since I had the impession that you should always use a namespace.
I tried to make a win form application from VS2010
removing the namespace auto generated but the code doesn't compile.
So, my confusion comes to the question:
- When (if) namespaces are essential in a C# Program?