I'm fairly new to C# and I came across an error that I don't know how to fix. As the title states, I get the No overload method 'ToString' takes 1 arguments error. I have looked at other questions on here but they are more complex then what I am trying to do. I have a simple equation that I am trying to show in a message box and it looks as follows:
Y = C + I + E + G;
MessageBox.Show(ToString(Y));
All of the variables in the formula are integers, stored as int, and are taken from text boxes. I have been learning C# from thenewboston's tutorials on YouTube and I haven't seen this issue there, then again there are over 200 videos on C# and I haven't gotten that far yet. Any suggestions on error debugging would be greatly appreciated.

"" + Yinstead ofY.ToString()because the former will result in""vs. anExceptionifYis null. Of course, this might be incorrect (or not required) semantics, so choose appropriately... – user166390 Apr 20 '12 at 19:48Y ?? "NULL VALUE"? – NominSim Apr 20 '12 at 19:56Y ?? "foo"only works whenYis a String already. Some people prefer the explicit:Y != null ? Y.ToString() : "". Just things to keep in mind. – user166390 Apr 20 '12 at 20:18