What is the purpose of Console.WriteLine in C#?
In C#, the Console.WriteLine method is used to write a specified string of text to the standard output stream, which is typically the console window, and automatically appends a new line at the end. This method is commonly used to output information to the user in console applications, such as printing text messages, variable values, debugging information, etc.