I know i can do the below to extend a class. I have a static class i would like to extend. How might i do it? I would like to write ClassName.MyFunc()

static public class SomeName
{
    static public int HelperFunction(this SomeClass v)
link|improve this question

74% accept rate
feedback

3 Answers

up vote 12 down vote accepted

You can't have extension methods on static classes because extension methods are only applicable to instantiable types and static classes cannot be instantiated.

Check this code..

    public static bool IsEmail(this string email)
    {
        if (email != null)
        {
            return Regex.IsMatch(email, "EmailPattern");
        }

        return false;
    }

First parameter to IsEmail() is the extending type instance and not just the type itself. You can never have an instance of a static type.

link|improve this answer
feedback

You can't extend static classes in C#. Extension methods work by defining static methods that appear as instance methods on some type. You can't define an extension method that extends a static class.

link|improve this answer
feedback

You might want to turn your static class into a singleton. Then there will only be one instance of the class. And you can use extension methods on it because it's an instance.

This is provided you have access to the source code of the class.

link|improve this answer
1  
Can we expect an explanation for this (I hate singleton)? – Amby Jan 5 '10 at 7:41
8  
Well, you wouldn't expect just one instance of "I hate singleton", would you? – Eric Lippert Jan 5 '10 at 7:46
How can anyone delete my I hate singleton I hate singleton comment? – acidzombie24 Jan 10 '10 at 1:14
@acidzombie24: I liked your comment. Probably somebody with high privileges (& high score) deleted it for some reason, maybe they didn't understand the joke. This site is run by the members. Too bad that happened. – John K Jan 10 '10 at 22:01
feedback

Your Answer

 
or
required, but never shown

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