Hi,
I have a couple of threads that I want to execute in my button on_Click event. I would like the second thread to start executing only upon the completion of the first.
How can I do that? My code looks like this:
private void btnAudit_Click(object sender, EventArgs e){
FindNewAccountsThread = new Thread(() => FindNewAccounts());
FindNewAccountsThread.Start();
AuditThread = new Thread(() => AuditData());
AuditThread.Start();
}//Audit