Task.WaitAll(Task.Factory.StartNew(() =>
{
foreach (string ifile in ifiles)
{
DoGUIAction(() => this.LstBxFilesToConvert.Items.Add(ifile));
Thread.Sleep(5);
}
}));
Should I be worried about disposing of this task I don't know? When should I be worried? This is confusing. Thanks guys.

New Topic/Question
Reply


MultiQuote






|