C# Console ekranı arkaplan rengi ve Yazı rengi değiştirmek için kodlar :
1 2 3 4 5 6 7 |
Console.BackgroundColor = ConsoleColor.Blue; Console.Clear(); Console.ForegroundColor = ConsoleColor.Red; Console.Write("www.yazilimkodlama.com"); Console.ReadKey(); |