begginers question about C#.
In every program I have to include several namespaces, like:
using System;
using System.Collections.Generic;
using Syste
System
and System.IO
namespaces are different.
You can treat "subnamespace" as parent-child relationship in the object model. If you have access to the "Car" object does not mean that you have access to car's wheels.
System
is a huge namespace that contains hundreds of nested namespace and thousands of classes. You should specify all nested namespaces separately to state what part of the module are you interested in.