Link to home
Start Free TrialLog in
Avatar of g_johnson
g_johnsonFlag for United States of America

asked on

what is the console

Okay, I'm done trying to figure this out.  What is the console?

What does console.writeline do -- where does it write?
What does console.readline do -- what does it read?

I'm using VB.Net 2003

Big points hoping for a thorough explanation.

Thanks ...
ASKER CERTIFIED SOLUTION
Avatar of AlexFM
AlexFM

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of g_johnson

ASKER

AlexFM -- so you basically write a .Net application and create an exe that is designed to be used in the command window?  When would you choose that over a WINFORMS app?
Avatar of AlexFM
AlexFM

When you want to write command line utility. For example, you write some command line tool which can be used by system administrator for running inside batch files.
In most cases we make Windows applications with user interface, but command line tools still exist and used.
Console applications are also used to test some ideas and algorithms, when we don't want to waste time building user interface.