|
|
От: |
s_aa
|
|
| Дата: | 25.11.25 08:27 | ||
| Оценка: | |||
Console.WriteLine(await GetIntAsync());
Console.WriteLine("Hello, World!");
Console.ReadKey();
async Task<string> GetIntAsync()
{
await Task.Delay(1000);
return "10";
}