Bari.Console.UI.ConsoleUserInterface.Error C# (CSharp) Method

Error() public method

Shows an error message
public Error ( string message ) : void
message string Error message
return void
        public void Error(string message)
        {
            System.Console.ForegroundColor = ConsoleColor.Red;
            System.Console.WriteLine(IndentString + message);
            System.Console.ForegroundColor = ConsoleColor.Gray;
        }