in c# if I want to add other System namespaces why do I need to call each namespace?
For example if I want to call the System.Text namespace I have to use:
using System;
using System.Text;
- why cant I just use using System?
- Why do I also have to call using System.Text?
- Why cant I use all System namespaces by just using System?
- Why we use System for all namespace ?and what the meanings of system ?