Thursday, July 23, 2015

BeginInVoke and InVoke

BeginInVoke,  InVoke
  • Delegate.Invoke: Executes synchronously, on the same thread.
  • Delegate.BeginInvoke: Executes asynchronously, on a threadpool thread.
  • Control.Invoke: Executes on the UI thread, but calling thread waits for completion before continuing.
  • Control.BeginInvoke: Executes on the UI thread, and calling thread doesn't wait for completion.

    stilll under developemt ...

No comments:

Post a Comment