In CLR, what is difference between a background and foreground thread?
In CLR, what is difference between a background and foreground thread? What is difference between a background and foreground thread ? Clarification: C# has no concept of background and foreground threads. The distinctions that certain scenarios make about a thread are done at a CLR / COM level. – JaredPar Aug 25 '09 at 20:02 C# doesn't have the concept of a Giraffe either, but you can make a class with a property called Giraffe. IsBackground is a property of an object in the framework. Remember, C# the language is not the .NET framework. It's just a programming language. – Eric Lippert Aug 25 '09 at 20:11 5 Answers ...