I have predominantly been using Visual Studio as my IDE to write and run C# code. In VS ,pressing f5 or clicking helps in running the program.
I am pretty new to VS Code IDE and i've installed supporting c# extensions. I created a cs file and added below code
Console.WriteLine("Hello world");
I've run following command
dotnet run
on terminal to view the result and it prints as expected "hello world".
but if I change the input inside and run it does not print the given input in the .
I'd like to know ,if there are more methods to run program on VS Code and is it possible to see the results on a console window like visual studio ?