I’m using vb.net in visual basic 2008. I’m wondering how perfom sequential tasks using vb.net ??
Example :
Do Task 1 then Move to Task 2 when Task 1 is complete
Any idea Please ? Which things and tools I have to use to solve this problem ?
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.
.NET framework has a
Taskclass, which supportsTask continuation. You would use Task.ContinueWith to chain them together. Here is a code sample: