thread question
C#
2
Posts
2
Posters
0
Views
1
Watching
-
If you want to synchronize one of your threads with a queued worker item, I would suggest you use an AutoResetEvent or ManualResetEvent object; the worker item could call its Set() method, the interested thread could use its WaitOne(). :)
Luc Pattyn [Forum Guidelines] [My Articles]
this months tips: - before you ask a question here, search CodeProject, then Google - the quality and detail of your question reflects on the effectiveness of the help you are likely to get - use PRE tags to preserve formatting when showing multi-line code snippets