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

Describe() public method

Describe an item with a description for the user.
public Describe ( string target, string description ) : void
target string The concept to describe
description string The description
return void
        public void Describe(string target, string description)
        {
            System.Console.ForegroundColor = ConsoleColor.Gray;
            System.Console.Write(IndentString + "    ");
            System.Console.ForegroundColor = ConsoleColor.Yellow;
            System.Console.Write(target);
            System.Console.ForegroundColor = ConsoleColor.Gray;
            System.Console.WriteLine(" - " + description);
        }