That's what the normal using directive does. For instance:
using System;
means you can use Console, Guid, Int32 etc without qualification. The closest equivalent to the single import in Java is:
using Console = System.Console;
(etc)
but that's not used very often.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…