//
 /// <summary>
 ///     Write text to the console, or could alternatly call:
 ///     commandPrompt.WriteLine(string)
 ///     commandPrompt.WriteLine(string, Brush)
 ///     commandPrompt.WriteLine(Paragraph)
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="WPFCommandPrompt.ConsoleWriteLineEventArgs" /> instance containing the event data.</param>
 private void WriteToConsole(ConsoleWriteLineEventArgs e)
 {
     _commandPrompt.OnConsoleWriteEvent(this, e);
 }