C++ console app
I am trying to run a CLR console app. It simply prints "Hello World" to a console window like
Console::Writeline("Hello World!");
return 0;
the problem I am having is that the console window immediately disappears when the program is run from VS2005. I don't get the line
Press Any Key To Continue . . .
How can I get the console window to stay put until I press a key?
Thanks,
|