public static ConsoleRenderObj W(this ConsoleRenderObj render, string msg, ConsoleColor color) { var orig = Console.ForegroundColor; Console.ForegroundColor = color; Console.Write(msg); Console.ForegroundColor = orig; return(render); }
public static ConsoleRenderObj W(this ConsoleRenderObj render, string msg) { Console.Write(msg); return(render); }