Any windows application can have a console including gui apps. Look up AllocConsole, GetStdHandle, and WriteConsole (in msdn). You won't need AllocConsole if your starting from one though.
I'm a semi-experienced C++ programmer trying to pick up C# and I'm having a bit of trouble trying to find the C# equivalent of a 'cout'. <BR><BR>I'm trying to develop a Windows Forms application which ...