I\'m a fan of extension methods in C#, but haven\'t had any success adding an extension method to a static class, such as Console.
For example, if I want to add an e
Nope. Extension method definitions require an instance of the type you're extending. Its unfortunate; I'm not sure why its required...