Lets say I have 2 extension methods to string, in 2 different namespaces:

namespace test1
{
    public static class MyExtensions
    {
        public static int TestMethod(this String str)
        {
            return 1;
        }
    } 
}

namespace test2
{
    public static class MyExtensions2
    {
        public static int TestMethod(this String str)
        {
            return 2;
        }
    } 
}

These methods are just for example, they don't really do anything.

Now lets consider this piece of code:

using System;
using test1;
using test2;

namespace blah {
    public static class Blah {
        public Blah() {
        string a = "test";
        int i = a.TestMethod(); //Which one is chosen ?
        }
    }
}

The Question:

I know that only one of the extension methods will be chosen.
Which one will it be ? and why ?

Edit:

This also bothers me, but not as much because it's a static method in a static class after all:

How can I choose a certain method from a certain namespace ?
Usually I'd use Namespace.ClassNAME.Method() ... But that just beats the whole idea of extension methods. And I don't think you can use Variable.Namespace.Method()

link|improve this question

2  
you can call test1.MyExtensions.TestMethod(a) if in doubt instead of a.TestMethod() – k3b Mar 12 '11 at 15:59
I don't know, but this I believe shouldn't really happen... give the method a more descriptive name in the class instead of trying to force the compiler to automagically choose one. I'm interested in seeing the responses. – Pieter Germishuys Mar 12 '11 at 16:00
1  
I don't say I'd ever do that. But lets say you're using some library, and unknowingly, there's an extension method over there with the same name.... just would like to know how it's chosen – Yochai Timmer Mar 12 '11 at 16:02
1  
Excellent question, I think - regardless of the alternate suggestions, this'll be good to know. – Mr. Disappointment Mar 12 '11 at 16:05
test1.MyExtensions.TestMethod(a) beats the idea of the extension methods. I've edited my question, that's not really what's bothering me. – Yochai Timmer Mar 12 '11 at 16:07
feedback

2 Answers

up vote 10 down vote accepted

No method will be chosen: the call is ambiguous and will not compile.

Why can't you do Namespace.ClassNAME.Method()? Certainly there is nothing that prevents you from treating extension methods as normal static methods, and in fact this is the only way for you to fix the ambiguity and have the program compile.

link|improve this answer
Ok, but is there a description somewhere about which one the compiler will choose and why ? And I was thinking about that I can't do Variable.namespace.Method() – Yochai Timmer Mar 12 '11 at 16:04
the compiler will choose neither, your code will not compile. – Femaref Mar 12 '11 at 16:09
@Yochai: the compiler will not choose because it will refuse to compile if both extension methods are visible. And as you say, variable.Namespace.Method() is not valid syntactically so it won't compile either. – Jon Mar 12 '11 at 16:10
feedback

As Jon says, if both of these exist when you do the compilation, the compilation will just fail.

But if only one exists at the time of compilation and a external library later gets updated to add the second, the code you compiled will still continue to use the first one. This is because the compiler interally turns your code into the longhand form of calling namespace.classname.method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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