tags:

views:

233

answers:

3
+3  Q: 

Async Method Call

How can I call a method asynchronously ?

+6  A: 

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

gkrogers
+4  A: 

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

mookid8000
+3  A: 

I guess the BackgroundWork is the easiest way to perform async operations.

Sebastian Sedlak
+1 But it's BackgroundWorker, actually.
m3rLinEz
BackgroundWorker is by far the quickest, easiest and least error prone method of not blocking your UI with a long running operation...if you're new to threading take baby steps and use this.
Michael Prewecki
of course, it's the BackgroundWorkerhttp://msdn.microsoft.com/en-us/library/8xs8549b.aspx
Sebastian Sedlak