begginers question about C#.
In every program I have to include several namespaces, like:
using System; using System.Collections.Generic; using Syste
Because nested namespaces are not included with parent one. See using directive documentation for details
A using directive does not give you access to any namespaces that are nested in the namespace you specify.