ÜRET BUTONU
private void Üret_Click(object sender, EventArgs e)
{
List<int> Liste = new List<int>();
Random rand = new Random();
for (int i = 1; i < 9; i++)
{
int sayi = rand.Next(8);
if (Liste.IndexOf(sayi) != -1)
{
i–;
continue;
}
else
{
Liste.Add(sayi);
//listboxa ekleme
listBox1.Items.Add(sayi.ToString());
}
}
}