I am trying to display myValue in the MessageBox. I use C++ 2008.
How is this possible. It seems that MessageBox in this case only can display a string, "".


int myValue = 0;
double myVal2 = 3.14;
myValue = myVal2;

MessageBox::Show(myValue);