12,796
回編集
編集の要約なし |
(→概要) |
||
12行目: | 12行目: | ||
public async Task<int> MethodAsync() | public async Task<int> MethodAsync() | ||
{ | { | ||
var iRet = await Task.Run(() => { | var iRet = await Task.Run(() => | ||
{ | |||
await Task.Delay(5000); | |||
return 0; | |||
}); | |||
return iRet; | return iRet; | ||
} | } |