Hi Afache, from your code, you want to FindNewAccounts first and then AuditData, so why not put them in one thread:
WorkThread = new Thread(() => { FindNewAccounts(); AuditData();});WorkThread.Start();
No comments:
Post a Comment