Can someone provide a simple code example on how to manage threads in C#?
Vadym Stetsyak - 28 Sep 2006 16:45 GMT
Hello, Roger!
R> Can someone provide a simple code example on how to manage threads in
R> C#?
What do you mean by "managing thread"?
have a look at ( watch for word-wrap )
( http://www.c-sharpcorner.com/UploadFile/chandrakantpp/UnderstandingThreading1123
2005002127AM/UnderstandingThreading.aspx?ArticleID=5d6654d2-bf4e-436b-adc7-dbefc
6608b62 )
--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
Chris Mullins - 28 Sep 2006 19:37 GMT
> Can someone provide a simple code example on how to manage threads in C#?
That's a big topic, and "managing threads" means different things to
different people.
The C# "Threading" guide from Microsoft can be found at:
http://msdn2.microsoft.com/en-us/library/ms173178.aspx
A "Best Practices" Guide from MS can be found here:
http://msdn2.microsoft.com/en-us/library/1c9txz50.aspx
Jon Skeet has written a nice primer on this as well:
http://www.yoda.arachsys.com/csharp/threads/

Signature
Chris Mullins, MCSD.NET, MCPD:Enterprise
http://www.coversant.net/blogs/cmullins
Adityanand Pasumarthi - 24 Oct 2006 14:25 GMT
Hi Roger,
Take a look at my article that helps you use threading in a more controlled
fashion in .Net applications using a custom ThreadPool.
http://www.codeproject.com/cs/library/managediocp-part-2.asp

Signature
Regards,
Aditya.P
> Can someone provide a simple code example on how to manage threads in C#?