Interaction with Console
What is a Console application? A Console application in C# a command line application. It takes the input from the user and writes the output to the command line console window. The C# console application interacts with the three standard data stream i.e. standard input, standard output and standard error. What is Console class and it's functionality in C#? A Console class is defined in System namespace. It contains several properties and methods that are used to interact with standard input, output and error stream. It is a static class and it cannot be inherited. Create a Console application in C#. We will now create a console application. Before that we need to install .NET framework SDK. Some of the .NET framework SDKs comes preinstalled in windows. You can also download them separately from Microsofts website You can check the .NET framework version installed on your machine by following below steps.'= Press Win + R. Type 'cmd' without quotes and press enter. on