what are background threads? give ex?
Answers were Sorted based on User's Feedback
Answer / petchiappan
All pooled threads are background threads.
Background threads Terminate automatically when the
application's foreground thread(s) end
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / koushh
Garbage Collector is a background thread.
It run until .Net code is running else idle.
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / bharani
A background thread is a thread that does not interact with
the user. We can say it is basically a while loop.
ex
while(true)
{
if (condition == fail)
break
}
| Is This Answer Correct ? | 0 Yes | 4 No |
Describe the advantages of writing a managed code application instead of unmanaged one. What's involved in certain piece of code being managed ?
How do you enforce garbage collection in .NET
Speaking of Boolean data types, what's different between C# and C/C++ ?
Can source code be reverse-engineered from IL?
What is the use of finalize and dispose eventhough garbage collector is working?
What is the use of viewmodel in mvc?
Explain Sections is ASP.Net MVC?
Explain unit test done by tester on development team?
How we can handle the exception at controller level in ASP.Net MVC?
How does �side by side� work for the .net framework 3.0?
What is page life cycle?
What is the .net framework and how does it work?