Say I have an overloaded extension method with the following two signatures:

public static void MyExtensionMethod(this Foo foo);
public static void MyExtensionMethod(this Foo foo, Bar bar);

I'd like to chain one method to the other. I can do this in one of two ways:

Chaining Technique #1

public static void MyExtensionMethod(this Foo foo)
{
    // Call overload using extension method syntax.
    foo.MyExtensionMethod(new Bar());
}

public static void MyExtensionMethod(this Foo foo, Bar bar)
{
    // Do stuff...
}

Chaining Technique #2

public static void MyExtensionMethod(this Foo foo)
{
    // Call overload as a regular method.
    MyExtensionMethod(foo, new Bar());
}

public static void MyExtensionMethod(this Foo foo, Bar bar)
{
    // Do stuff...
}

This is my question: Is there any difference between calling the overloaded method as an extension method versus as a regular method? If so, what's the difference? Is one preferable to the other?

link|improve this question

80% accept rate
I prefer #1 since it makes clear that the extension method is called IMHO. – Yahia Feb 9 at 20:46
1  
I don't think this is Chaining. This is overloading. Chaining would be foo.Bar1().Bar2(); – cadrell0 Feb 9 at 20:50
1  
@cadrell0 - It is both. – Oded Feb 9 at 20:51
@cadrell0 - As I understand the term, this is method chaining. foo.Bar1().Bar2(); is object chaining. – FishBasketGordo Feb 9 at 20:55
feedback

4 Answers

up vote 1 down vote accepted

The second one is actually more stable. The first one will be changed if I do something like:

public class Foo
{
    public void MyExtensionMethod(Bar bar)
    {
        Console.WriteLine("instance method");
    }
}

If I add this then in the first case it calls the instance method, and in the second case it calls the extension method.

link|improve this answer
2  
True... but I think it would be a horrible idea to name an extension method the same as an instance method. – Andrew Barber Feb 9 at 21:11
2  
-1 Completely unrealistic scenario. Though correct, this is a real stretch. – Oded Feb 9 at 21:13
2  
@Servy Your argument is somewhat specious; Taking it to its logical conclusion, you should never use Extension methods at all - just use a static method instead... because a new version of a library could match your extension method's signature. That's really what you are arguing here, after all. -1 – Andrew Barber Feb 9 at 21:17
2  
I suggest you read your last comment and consider why you downvoted every other answer on this question. – Oded Feb 9 at 21:19
1  
@Servy it's something that might, extremely rarely, have a tiny chance to perhaps come up every few years... and is completely irrelevant for a stable application that isn't using new versions of a library. – Andrew Barber Feb 9 at 21:19
show 8 more comments
feedback

Assuming the compiler is able to resolve everything, they should be emitted as equivalent MSIL. Extension methods are just compiler tricks; they are static methods in reality.

Servy notes in his answer that if you have an instance method with the same name, you can run into problems. I agree... and as a result, strongly urge you never to name an extension method the same as any instance method.

link|improve this answer
feedback

This question is equivalent to asking "is there a difference between calling an extension method as an extension versus as a static method?". The answer is no. The compiler translates both calls to the same code.

link|improve this answer
feedback

I find your technique 2 to be more natural to read.

The first one is a bit jarring - I need to figure out that it calls a second extension method.

So, on readability alone, I would select technique 2.

In terms of how things get called - extension methods are just syntactic sugar for calls to static methods. Both examples amount to the same thing.


There is one exception, as noted in the answer by @Servy - if you have an instance method with the exact same name and parameters (bar the first this parameter), you can have issues. Though unlikely to occur in your own code base, this may happen - just a consequence of using extension methods.

It is bad practice to do this - don't name instance methods the same as extension methods.

link|improve this answer
@Downvoter - care to comment? – Oded Feb 9 at 21:08
1  
See my answer. There is an exceptional case that distinguishes them. Usually they are the same thing, but not always. – Servy Feb 9 at 21:08
feedback

Your Answer

 
or
required, but never shown

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