Console Writes from Multiple Threads

  • Thread starter Thread starter Michael D. Ober
  • Start date Start date
M

Michael D. Ober

In a VB 2005 Console Application, can multiple threads write to the console
without causing problems? I know this is a quick way to destabilize a
Windows Forms application.

Mike Ober.
 
In a VB 2005 Console Application, can multiple threads write to the console
without causing problems?

Yes they can. Of course if you want the output to appear in a
predictable way you'll still need to synchronize the writes.


Mattias
 
Back
Top