2using System.Threading.Tasks;
12 private readonly
string value;
27 public override Task
Execute(CancellationToken Cancel)
29 System.Console.Error.Write(this.value);
30 return Task.CompletedTask;
Writes a string to the console
ConsoleErrorWriteString(string Value)
Writes a string to the console
override Task Execute(CancellationToken Cancel)
Executes the console operation.
Represents an asynchronous operation to be performed.