readline
readline copied to clipboard
Allow user to override the way the prompt is written
This allows a user to override the way the Prompt is written so that changes to formatting can be introduced.
i.e.
System.ReadLine.WritePrompt = (prompt) => {
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write(prompt);
Console.ResetColor();
};