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 Does it work to add System.Console.Out as a trace listener?

https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.debug.listeners?view=netframework-4.8.1#examples

(I have no idea why the docs keep redirecting to .NET Framework 4.8.1 instead of .NET neé .NET Core.)

Debug.Listeners Property (System.Diagnostics)

Gets the collection of listeners that is monitoring the debug output.

@mcc I'm really glad! ♥