Asynchronous Call Method

How can I call the method asynchronously?

+4
source share
3 answers

How to call an asynchronous Visual C # method:
http://support.microsoft.com/kb/315582

+6
source

You should probably use ThreadPool.QueueUserWorkItem ( ThreadPool.QueueUserWorkItem Method )

+4
source

I think BackgroundWork is the easiest way to perform asynchronous operations.

+3
source

All Articles