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.