using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.Title = "Pozdravljen svet."; Console.BackgroundColor = ConsoleColor.Red; Console.Clear(); Console.ForegroundColor = ConsoleColor.White; Console.WriteLine("Pozdravljen svet"); } } }