Console Window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Group,

when the Console.WriteLine is called, shouldn't the console window appear?
or how do i call it to show the console window?


Please help.


Ros
 
Ros said:
Group,

when the Console.WriteLine is called, shouldn't the console window appear?
or how do i call it to show the console window?


Please help.


Ros

If your not in a Console application, then no - it won't appear. If
you are trying to show it from a windows forms application, then you
can use the AllocConsole api to create a console window for your
process (windows applications do not have a stdin by default).
 
Back
Top