How can I access functions from a class without having to name that class every time? I know how to use \"using\" so that I don\'t have to name the namespace but I was hopin
I routinely have
static Action o = s => Console.WriteLine(s);
in my code which makes debug output so much less noisy. That way I can call Console's static Writeline() much easier. Would that help?