Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ConsoleErrorWriteLineString.cs
1using System.Threading.Tasks;
2
4{
9 {
10 private readonly string value;
11
16 public ConsoleErrorWriteLineString(string Value)
17 {
18 this.value = Value;
19 }
20
24 public override Task Execute()
25 {
26 System.Console.Error.WriteLine(this.value);
27 return Task.CompletedTask;
28 }
29 }
30}
Writes a string to the console, appending a newline at the end.
ConsoleErrorWriteLineString(string Value)
Writes a string to the console, appending a newline at the end.
override Task Execute()
Executes the console operation.
Manages a Console operation.
Definition: WorkItem.cs:9