2using System.Threading.Tasks;
20 : base(ForegroundColor, BackgroundColor)
30 this.writer(System.Console.Out);
31 return Task.CompletedTask;
Abstract base class for custom writers
override Task DoWrite()
Method that does the actual custom writing.
ConsoleOutCustomWriter(CustomWriter Writer, ConsoleColor? ForegroundColor, ConsoleColor? BackgroundColor)
Performs custom writing
delegate void CustomWriter(TextWriter Output)
Delegate for custom writers.