I'm reading the book 'C# in Depth, 2nd Edition' of Jon Skeet. He said that we can call extension methods with dynamic arguments using two workarounds, just as

dynamic size = 5;
var numbers = Enumerable.Range(10, 10);
var error = numbers.Take(size);
var workaround1 = numbers.Take((int) size);
var workaround2 = Enumerable.Take(numbers, size);

Then he said "Both approaches will work if you want to call the extension method with the dynamic value as the implicit this value". I don't know how to achieve it.

Thanks a lot.

link|improve this question

80% accept rate
5  
Man, now isn't that just the ticket? You read a book by Jon Skeet, and get an answer from Jon Skeet about something you're unclear on. – Cody Gray Mar 11 '11 at 8:59
Do we need a jon-skeet tag? – Myster Nov 1 '11 at 20:11
feedback

2 Answers

up vote 9 down vote accepted

Like this:

dynamic numbers = Enumerable.Range(10, 10);
var firstFive = Enumerable.Take(numbers, 5);

In other words, just call it as a static method instead of as an extension method.

Or if you know an appropriate type argument you could just cast it, which I'd typically do with an extra variable:

dynamic numbers = Enumerable.Range(10, 10);
var sequence = (IEnumerable<int>) numbers;
var firstFive = sequence.Take(5);

... but if you're dealing with dynamic types, you may well not know the sequence element type, in which case the first version lets the "execution time compiler" figure it out, basically.

link|improve this answer
presumably you could do: ((IEnumerable<int>)numbers).Take(5) ? – Massif Mar 11 '11 at 8:54
@Massif: Yes, you could do that too. Will edit. – Jon Skeet Mar 11 '11 at 8:58
feedback

Extension method just a syntactic sugar, it will be converted as a normal method calling by c# compiler. This conversion is dependent with current syntax context (Which namespaces are imported by using statement).

Dynamic variable is process by runtime. this time, CLR cannot get enough syntax context information to deciding which extension method used. So, it is not work.

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.