Raed Sawalha <(E-Mail Removed)> wrote:
> I used to code a continously running thread in C++ like following:
<snip>
> How can I achieve the same procedure in C#
Just write a never-ending method, and create a thread to run that
method in the normal way. I very rarely write methods like that though
- the thread should usually watch for a certain condition at which
point it will shut down gracefully.
See
http://www.pobox.com/~skeet/csharp/threads/ for more threading
information.
--
Jon Skeet - <(E-Mail Removed)>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too