I have this code :
static dynamic Mean (dynamic x, dynamic y)
{
return (x + y) / 2;
}
static void Main()
{
int x = 3, y = 5;
Console.WriteLine (Mean (x, y)); //this is working
}
however the following line failes at runtime :
string s = Mean (3, 5); // Runtime error!
why is that ?
why s can not be set with the dynamic value ?
and if so , why Console.WriteLine (...) did succeed to run with this dynamic value ?
edit
and if if so , how can i make string s = Mean (3, 5); work ?

scould be setdynamiconly if itsdynamic s, well you say its a string – V4Vendetta May 3 '12 at 9:03