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 |
What is boxing and unboxing?
How large is the .net framework 3.0?
mention what is csdl, ssdl and msl sections in an edmx file?
will there be any issues adding a table without primary keys to a data model?
What is .net framework in simple terms?
What are attributes
what is entity framework advantage?
What is RouteConfig.cs in ASP.Net MVC 4?
How large is the .net framework 3.0? Does this change make the release larger?
How can we determine action invoked from HTTP GET or HTTP POST?
Difference between Dispose and Finalize method
mention what is the difference between ado.net and classic ado?