2using System.Threading.Tasks;
11 private readonly TaskCompletionSource<string> result;
29 string Row = await System.Console.In.ReadLineAsync();
30 this.result.TrySetResult(Row);
34 this.result.TrySetException(ex);
Reads a line from the console.
override async Task Execute()
Executes the console operation.
ConsoleInReadLine(TaskCompletionSource< string > Result)
Reads a line from the console.
Manages a Console operation.