Is it possible to write error messages to the console from process that has been fired up? Normally we are used to using Console.Writeline() from within the console. The additional process (in another assembly) is designed to be operated by the console, and potentially also through a GUI.
However if we attach methods to event handlers (i.e. a callback), then Console.WriteLine is not working.
Currently using:
var thread=new Thread(someMethod);
thread.Start();
Subsequently, callbacks may get fired off, it's here that console messages go missing.