Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I set a thread to a daemon thread in C#?

share|improve this question
4  
if you knew the answer, why did you ask? – BrokenGlass Feb 17 '11 at 14:24
3  

2 Answers

up vote 18 down vote accepted

Though you have already answered your own question, I would still like to elaborate more on it.

In C# .NET, unlike the Java

   Background threads ~ Daemon threads (in java).  
   Foreground threads ~ User threads (in java)

By default, threads you create explicitly are foreground threads.

As name suggests, Background thread's run in background and stop automatically when nothing is running program.
e.g "Garbage collector".
Garbage collector runs until some .NET code is running or else its idle.

You can make a thread Daemon by

thread.IsBackground = true;  
share|improve this answer
excellent, thanks! :) and re: answering my own question, see meta.stackoverflow.com/questions/17463/… – Epaga Feb 19 '11 at 17:15

Like this:

myThread.IsBackground = true; 
share|improve this answer
2  
Good job answering yourself! – Neurofluxation Feb 17 '11 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.