What is the simplest way to run a C# program in linux (eg with `dotnet`) and be able to see the output of Debug.Print statements? All the instructions I find on Google only show how to do this in VS Code and I am not currently using VS Code.
@mcc I think you can type `dotnet new` to bootstrap a project. And then `dotnet run` to run it.
It’s been a while since I’ve done C# on Linux.