Егор Б.цитирует2 месяца назад
Вызов пользовательской реализации await

static async Task UseCustomAsync()

{

string result = await CustomAsync();

Console.WriteLine(result);

}

public static MyAwaitableType CustomAsync()

{

return new MyAwaitableType();

}
  • Войти или зарегистрироваться, чтобы комментировать