vote up 3 vote down star

How can I call a method asynchronously ?

flag

60% accept rate

3 Answers

vote up 6 vote down check

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

link|flag
vote up 3 vote down

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

link|flag
+1 But it's BackgroundWorker, actually. – m3rLinEz Jan 19 at 12:45
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 Jan 19 at 14:04
of course, it's the BackgroundWorker msdn.microsoft.com/en-us/library/… – Sebastian Sedlak Jan 19 at 14:29
vote up 4 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.