vote up 6 vote down star
2

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 extension to Console, called 'WriteBlueLine', so that I can go:

Console.WriteBlueLine("This text is blue");

I tried this by adding a local, public static method, with Console as a 'this' parameter... but no dice!

public static class Helpers {
    public static void WriteBlueLine(this Console c, string text)
    {
        Console.ForegroundColor = ConsoleColor.Blue;
        Console.WriteLine(text);
        Console.ResetColor();
    }
}

This didn't add a 'WriteBlueLine' method to Console... am I doing it wrong? Or asking for the impossible?

flag

3 Answers

vote up 12 vote down check

You are indeed asking the impossible.

link|flag
vote up 2 vote down

You may be asking the impossible as it stands, however this is certainly something that would be as technically possible to do as instance-based extension methods if they provided a syntax for it. Sounds like the idea simply got missed by the C# architects. Maybe something similar to partial classes that could package extension methods for a class (without actually changing the class itself):

// NOTE: this is an imaginary (not valid) syntax!
public extension class Console
{
    public static void WriteBlueLine( string text)
    {
        // ...
    }
}

This might also have been a somewhat cleaner (others' opinions might well differ on this) way to package instance-based extension methods as well. There would be namespacing issues, but with some thought (which I clearly have not done much of on this) I think they could be worked out.

Unfortunately, you came up with the idea too late!

link|flag
Wow Mike -- i like that you're using your imagination here. Extension classes FTW! – secretGeek Oct 31 '08 at 0:38
vote up 4 vote down

You can't add static methods to a type. You can only add (pseudo-)instance methods to an instance of a type.

The point of the this modifier is to tell the C# compiler to pass the instance on the left-side of the . as the first parameter of the static/extension method.

In the case of adding static methods to a type, there is no instance to pass for the first parameter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.