Open console from windows app

  • Thread starter Thread starter Jesper Odgaard
  • Start date Start date
J

Jesper Odgaard

Hi,

I have created a C# windows application. Is it possible
to open a text console from a subroutine within an
application using forms.

brgds Jesper, DK
 
You can use the System.Console class to do this

System.Console.WriteLine("Write Something");
System.Console.Read();
 
Hi,

Mahesh said:
You can use the System.Console class to do this

System.Console.WriteLine("Write Something");
System.Console.Read();

I'm affraid that aboved code do nothing in Windows form application...
)-:

I think that only firing of console application can give
you "real" console input and output. So you can fire it
from a form application.

Marcin Grzêbski
 
Back
Top