Thursday, April 19, 2012

Console Application

Console Application

Definition - What does Console Application mean?

A console application, in the context of C#, is an application that takes input and displays output at a command line console with access to three basic data streams: standard input, standard output and standard error.

A console application facilitates the reading and writing of characters from a console - either individually or as an entire line. It is the simplest form of a C# program and is typically invoked from the Windows command prompt. A console application usually exists in the form of a stand-alone executable file with minimal or no graphical user interface (GUI).

Techopedia explains Console Application

The program structure of a console application facilitates a sequential execution flow between statements. Designed for the keyboard and display screen, a console application is driven by keyboard and system events generated by network connections and objects.

A console application is primarily designed for the following reasons:

  • To provide a simple user interface for applications requiring little or no user interaction, such as samples for learning C# language features and command-line utility programs.
  • Automated testing, which can reduce automation implementation resources.
Console applications developed in C# have one main entry point (static main method) of execution, which takes an optional array of parameters as its only argument for command-line parameter representation.

The .NET Framework provides library classes to enable rapid console application development with output display capability in different formats. System.Console (a sealed class) is one of the main classes used in the development of console applications.

One console application functionality limitation is that strings returned by console functions using original equipment manufacturer (OEM) code page may not be correctly processed by functions using American National Standards Institute (ANSI) code page. This issue may be resolved by calling the SetFileApisToOEM function to produce OEM character strings, rather than ANSI character strings.

No comments:

Post a Comment