Advertisement
skipter

CMD background color change and text VS

May 24th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2. namespace ConsoleApp7
  3. {
  4.     class Program
  5.     {
  6.         static void Main(string[] args)
  7.         {
  8.             Console.BackgroundColor = ConsoleColor.Magenta;
  9.             Console.Clear();
  10.             Console.ForegroundColor = ConsoleColor.Black;
  11.             Console.Write("TEXT");
  12.             Console.ReadKey();
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement