RosettaCodeData/Task/Flow-control-structures/C-sharp/flow-control-structures-4.cs
2023-07-01 13:44:08 -04:00

5 lines
162 B
C#

async Task DoStuffAsync() {
DoSomething();
await someOtherTask;//returns control to caller if someOtherTask is not yet finished.
DoSomethingElse();
}