Esempio n. 1
0
        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);
        }
Esempio n. 2
0
 public static ConsoleRenderObj W(this ConsoleRenderObj render, string msg)
 {
     Console.Write(msg);
     return(render);
 }