RosettaCodeData/Task/Flow-control-structures/C-sharp/flow-control-structures-4.cs

6 lines
162 B
C#
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
async Task DoStuffAsync() {
DoSomething();
await someOtherTask;//returns control to caller if someOtherTask is not yet finished.
DoSomethingElse();
}