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?
Why is x dynamic, compiler not smart enough or I miss something important? |
||||
|
I'm just guessing here, but... When you add a cast to Check out the MSDN page on using Using Type dynamic (C# Programming Guide) And scroll to the following text:
|
|||||||||||||
|
|
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 |
||||
|
|
Foofunction that returns aHashtableavailable? The compiler does not know ahead of time what will be coming back as a return value. You could have generated implementation forFooon the fly (at runtime) after all. – Hamish Grubijan Oct 22 '10 at 13:28Foofunction, 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