Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
s could be set dynamic only if its dynamic s, well you say its a string – V4Vendetta May 3 '12 at 9:03
string s = Mean (3, 5).ToString(); – Chuck Norris May 3 '12 at 9:14

5 Answers

up vote 5 down vote accepted

Because in this case you're trying to set int value to your string variable.

Console.WriteLine automatically do .ToString() before writing in console. Try this for example.

int x=5;
Console.WriteLine(x);
share|improve this answer
hows that related to the tostring methd ? – Royi Namir May 3 '12 at 8:56
string s = Mean (3, 5); is trying is going to set int value to your string variable which gives error. But Console.WriteLine (Mean (x, y)); is working, because it's theoritacally is the same as Console.WriteLine (Mean (x, y).ToString()); – Chuck Norris May 3 '12 at 8:57
1  
@ChuckNorris Its bcoz WriteLine has numerous overloads double, int .... – V4Vendetta May 3 '12 at 9:01
read my edit please – Royi Namir May 3 '12 at 9:01
1  
whether or not Console.WriteLine calls ToString is unrelated to the problem. The point is that WriteLine accepts an int as its argument and because of that the run time type check suceeds if WriteLine was implemented such that it drew an int directly to screen as pixels and not using .ToString it wouldn´t change a bit for OP – Rune FS May 3 '12 at 9:12
show 10 more comments

your code would have to be valid if written statically.

using dynamic simply means that the type checking is deferred until runtime. In your case mean is returning an int. You are therefor trying to assign an int to a string which is not legal.

typewise there not difference between your code and one using the below implementation of mean

int Mean(int x, int y){
   return (x+y)/2;
}

the statement below would result in a compilation error

string s = Mean(3,5);

by using dynamic as return type and the type for x and y, you've simply told the compiler not to check the types but to leave the type checking to the runtime. The check is essentially the same in your sample code as the one performed by the compiler and the result is also the same. The assignment is illegal.

Console.WriteLine has an overload that takes an int so the type checking succeeds and all is well in that case

share|improve this answer

Console.WriteLine calls the ToString() method on an object. At runtime when you call ToString() on the dynamic object, which is a int, there is no issue. However, in your second example you are essentially trying to put a int into a string, which is why it is complaining.

I believe this would allow you to do what you want.

string s = (Mean (3, 5)).ToString();
share|improve this answer
does dynamic has toString () ? according to VS it does but is it make any sence ? – Royi Namir May 3 '12 at 9:05
Console.Writeline(...) suceeds because it has an overload that accept an argument of the same type as the call to Mean returns. It has nothing to do with whether or not is uses .ToString internally – Rune FS May 3 '12 at 9:07
at runtime the variable will be a int, which is a object, which has ToString. – Rob May 3 '12 at 9:12
dynamic s = Mean (3, 5); 

or

var s = Mean(3, 5);
share|improve this answer

Your code is trying to convert an int value to String implicitly. That is why you are getting the exception. Since dynamic determines the data type at runtime, The method retuned an int as the result and when you try to assign int to a string without doing Explicit Cast, you will get exception. You could try

string s = Convert.ToString(Mean(3, 5));
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.