I am new to coding with VSC this semester and I don't know much.
I installed vsc, c# and .net core (not sure if I need anything else).
Since I know very little I followed a Youtube tutorial to learn the basics. Everything worked fine until he wanted to change text color. I copied every step but I noticed that the debug console is not changing the text color and that the Youtuber was using an external terminal/console (don't know the difference). I thought who cares about color and just continued with the video. Some code later he wrote an input:
// Ask users name
Console.WriteLine("What is your name?");
// Get user input
string inputName = Console.ReadLine();
Console.WriteLine("Hello {0}, let's play a game...", inputName);
// This is never displayed after giving the debug console a name
Copied the input but all I was able to do in the debug console is typing name after name and nothing happens. The program runs forever if I do not close it. Than I thought the problem was the debug console and I started to google how to change that. So I googled again and again and was not able to find how to change the console to an external one all things I found were not helpful to me.
Long story short. How can I change the terminal or console form not using the debug console so I can change the text color and so on?
Thanks in advance Jona