I' ve several places in my C# code, that output things to the Console. Some using Console.Writeline, some via TraceListeners like System.Diagnostics.ConsoleTraceListener.
Now I want to display all that output in a WPF textbox. Is it possible to bind the console output 1:1 in some way to a TextBox?
Or do I have to change every single call of TraceListeners or Console.Writeline to add the output to textbox.text additionally?