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 namespaces
How would you deploy your old applications with .net framework 4.0? Are the old applications compatible?
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?
What is the CLR
Difference between ASP.NET MVC and ASP.NET WebForms?
When do you absolutely have to declare a class as abstract
Why to use html.partial in mvc?
Difference between Dispose and Finalize method
What is ViewStart Page in ASP.Net MVC?
Is any files are generated,when we are adding the web reference to the web service?
What is entity framework? : Entity framework
What are the components required to create a route in mvc?