How do I set a thread to a daemon thread in C#?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Though you have already answered your own question, I would still like to elaborate more on it. In C# .NET, unlike the Java
By default, threads you create explicitly are As name suggests, Background thread's run in background and stop automatically when nothing is running
program. You can make a thread Daemon by
|
||||
|
|
Like this:
|
|||||
|