Contenido del Curso
Introduction to .NET with C#
Introduction to .NET with C#
Implementing an Asynchronous Method
Important Points
- A task represents an asynchronous operation;
- We can use the
async
keyword to convert a method into an asynchronous method; - An asynchronous method always returns a
Task
object; - In order to return data from an asynchronous method, we use the
Task<T>
as the method's return value, whereT
is the datatype of the return value; - The
await
keyword waits for an asynchronous task to be performed.
¡Gracias por tus comentarios!