What the normal directive does. For instance:
using System;
means you can use Console, Guid, Int32, etc. without qualification. The closest equivalent to a single import in Java is:
using Console = System.Console;
(etc.)
but it is not used very often.
source
share