Can anyone explain or give a pointer to an explanation of the threading in C# / WPF?
Especially I'd like to have a non-object oriented explanation about background worker.
That is: I'd like to have an idea how that is implemented in term of conventional threading.
- Is there a "pattern" that the backround worker thread implements?
- What actually is the thread?
- What actually starts it?
- Why are UI-thread stuff "out of limits"?
- Why the "DoWork" event handler?