Open console from windows app

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
 
M

Mahesh Subramanian

You can use the System.Console class to do this

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

=?ISO-8859-2?Q?Marcin_Grz=EAbski?=

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top