Advertisement
Ziomnexpl

test_kolorow

Apr 10th, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. using System;
  2.  
  3. namespace test_kolorow
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.WriteLine("Hello World!");
  10.             Console.WriteLine("Nacisnij dowolny klawisz aby zmienic kolor");
  11.             Console.ReadKey();
  12.             Console.BackgroundColor = ConsoleColor.Red;
  13.             Console.ForegroundColor = ConsoleColor.White;
  14.             Console.Clear();
  15.             Console.WriteLine("kolor zmieniony");
  16.  
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement