Ara
C# Matrix Yapımı
- www.sametmedya.com
- 21 Ara 2015
- 1 dakikada okunur

Matrix Uygulaması İsterseniz Renklerini Değitirebilirsiniz :)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Uygulama_02 { class Program { static void Main(string[] args) { for (int i = 0; ; i++) { if (i%2==0) { Console.BackgroundColor = ConsoleColor.DarkBlue; } else { Console.BackgroundColor = ConsoleColor.Yellow; } Console.WriteLine(); } Console.ReadLine(); } } }
Comments