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