Microsoft.NET Question:
Download Questions PDF

How to stop a thread?

Microsoft.NET Interview Question
Microsoft.NET Interview Question

Answer:

NET allows to call System.Windows.Forms.Control functions only from thread where control was created. To run them from other thread we need to use Control.Invoke (synchronous call) or Control.BeginInvoke (asynchronous call) functions. For task like showing database records we need Invoke. To implement this :Delegate type for calling form function, delegate instance and function called using this delegate Invoke call from worker thread. Next problem is to stop worker thread correctly. Steps to do this:Set event "Stop Thread" Wait for event "Thread is stopped" While waiting for event process messages using Application.DoEvents function. This prevents deadlock because worker thread makes Invoke calls which are processed in main thread. Thread function checks in every iteration whether Stop Thread event is set. If event is set, function makes clean-up operations, sets event "Thread is stopped" and returns.

Download Microsoft.NET Interview Questions And Answers PDF

Previous QuestionNext Question
Is there built-in support for tracing/logging?How to produce an assembly?