Error: cannot convert from system.thread.tasks.task to system.action
Task A = Task.Run(() => Filecopy.COPY_F(txtpatterns.Lines, txtsourcepath.Text));
Task B = Task.Run(() => Unzip.Data(Filecopy.zipfilepath));
Task C = Task.Run(() => GIO_LOad.Data(Unzip.GIOlist));
Task t = null;
t = Task.Factory.StartNew(() => A
.ContinueWith(B)
.ContinueWith(C),
TaskScheduler.FromCurrentSynchronizationContext()));
I'm trying to run these tasks one by one, because task B will get List<string>
from task A and task c will get listof string from task B.