Just have a normal method like
void DosomethingLong()
What’s the best way to call it in an async way?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The standard way is to create a delegate of the method:
then execute it asynchronously using the APM (example):
There are other methods you can use; using a Thread, using BackgroundWorker, etc, depending on your exact requirements.