以下不是多余的吗?
await blob.CopyToBlobAsync(newBlob).
ContinueWith((t) => { if (t.IsFaulted) throw t.Exception; });
好像没有ContinueWith调用,会直接抛出异常?
什么时候会使用 continueWith 而不是等待任务?
以下是一样的吗?
await myTask.ContinueWith(t => {'do something with the task t'});
和
await myTask;
'do something with the task MyTask'