Recap: Introduction to C# - Console Methods
A console application is a program that interacts with the user through a command-line interface. It is a simple way to learn the basics of programming.
The Console class provides methods to read and write to the console:
Console.WriteLine("Hello World!");
string name = Console.ReadLine();
Convert a string to other types using Parse methods:
int x = int.Parse("5");
double y = double.Parse("3.14");