Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public string Foo(object obj) {
    return null;
}

public string Foo(string str) {
    return null;
}

var x = Foo((dynamic) "abc");

Why is x dynamic, compiler not smart enough or I miss something important?

share|improve this question
What if you only had a single Foo function that returns a Hashtable available? The compiler does not know ahead of time what will be coming back as a return value. You could have generated implementation for Foo on the fly (at runtime) after all. – Hamish Grubijan Oct 22 '10 at 13:28
@Hamish Grubijan, when you call the Foo function, the compiler knows which function is being called at compile time. Try making this function static, press F12 and it will directly navigate to the proper function. – Darin Dimitrov Oct 22 '10 at 13:38
@Darin, why making it static makes a difference? – Hamish Grubijan Oct 22 '10 at 13:47

2 Answers

up vote 4 down vote accepted

I'm just guessing here, but...

When you add a cast to dynamic, the entire expression becomes a dynamic expression. The result of a dynamic expression is always going to be dynamic because everything is resolved at run-time.

Check out the MSDN page on using dynamic for more info:

Using Type dynamic (C# Programming Guide)

And scroll to the following text:

The result of most dynamic operations is itself dynamic.

share|improve this answer
Yes, but this compiles just fine: string x = Foo((dynamic)"abc"); – Darin Dimitrov Oct 22 '10 at 13:34
Why is it need to be resolved at run-time, if all methods return string? – dotneter Oct 22 '10 at 13:37
@Darin - Check out the link I posted. It also covers implicit conversions of dynamic back to static types. Look for: "Conversely, an implicit conversion can be dynamically applied to any expression of type dynamic." In this case, the result of the expression is still dynamic but since you declare x as a static type it is implicitly converted back. – Justin Niessner Oct 22 '10 at 13:37
@Justin: Seems we're arguing the same point here, so I'll let you do the work and get the votes :) – Brian Rasmussen Oct 22 '10 at 13:39
2  
@Darin - ...I never did like dynamic types. :-P I think this is one of those times that one of the C# Language guys needs to hop in and validate. Where's Eric when you need him? Haha. – Justin Niessner Oct 22 '10 at 13:47
show 8 more comments

This blog posting might be helpful to you: http://blogs.msdn.com/b/cburrows/archive/2010/04/01/errata-dynamic-conversions-and-overload-resolution.aspx

In particular: "If you have a method call with a dynamic argument, it is dispatched dynamically, period."

That means C# doesn't know which overload is being called until runtime. It doesn't know at compile time. My understanding is that it doesn't even check what the possible overloads are at compile time (why would it?), or make a note of the fact that in your case they all return strings.

So at compile time, the return value of Foo isn't known. Thus the type of x is determined at compile time to be dynamic.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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