vote up 6 vote down star

I'm listening to a talk about C#4's dynamic keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods?

public static class StrExtension {
    public static string twice(this string str) { return str + str; }
}
...
dynamic x = "Yo";
x.twice(); // will this work?
flag

Awesome question. My Guess is "No" since they aren't really part of the class, and aren't available via reflection. – TheSoftwareJedi Nov 3 '08 at 15:32
I'd also guess "no". But I think this would work: var x = "Y0"; x.twice(); – Joel Coehoorn Nov 3 '08 at 15:33
Joel, this is allready working. Changing it would be a breaking change – Olmo Nov 20 '08 at 17:50

3 Answers

vote up 9 vote down check

From the "New Features in C# 4" word doc:

Dynamic lookup will not be able to find extension methods. Whether extension methods apply or not depends on the static context of the call (i.e. which using clauses occur), and this context information is not currently kept as part of the payload.

link|flag
Well, that was weird... This suddenly went from three answers to one. I guess as I deleted my wrong answer, the other guy deleted his "not quite as correct answer".... – James Curran Nov 3 '08 at 15:40
vote up 1 vote down

This works which I find interesting at least...

public static class StrExtension
{
   public static string twice(this string str) { return str + str; }
}

...
dynamic x = "Yo";
StrExtension.twice(x);

Still, if the compiler can find the correct extension method at compile time then I don't see why it can't package up a set of extension methods to be looked up at runtime? It would be like a v-table for non-member methods.

link|flag
vote up 1 vote down

It can't work, Extension methods work depending on having the namespace included in the file and, as far as I know, MSIL has no idea about files and including namespaces.

link|flag

Your Answer

Get an OpenID
or

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