Pickaxe.PlatConsole.UnixConsole.PrintError C# (CSharp) Method

PrintError() public method

public PrintError ( string value ) : void
value string
return void
        public void PrintError(string value)
        {
            Console.Write("\u001b[0;31m"); //red
            Print(value);
            Console.Write("\u001b[0m"); //reset
        }