if (message.Length != 0) s += "\n" + leadingTabs + message;
Print(s);
just got a threading exception:An unhandled exception of type 'System.Threading.ThreadAbortException' occurred in WindowsBase.dll
Am I doing anything wrong? Do I need to take any steps to ensure that Print() statements are thread safe?
--EV

Comment