Çekilişten Kişi SilmeÇekilişi Başlatusing System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Collections;//ArrayList(Sınırsız Dizi)Kullanıcağımız için ekledim namespace Ferhat { public partial class Form1 : Form { public Form1() { InitializeComponent(); } ArrayList cekilis = new ArrayList(); private void btnEkle_Click(object sender, EventArgs e) { cekilis.Add(textBox1.Text); listBox1.Items.Clear(); foreach (string cek in cekilis) { listBox1.Items.Add(cek); } textBox1.Clear(); } private void btnSil_Click(object sender, EventArgs e) { cekilis.Remove(listBox1.Text); listBox1.Items.Clear(); foreach (string del in cekilis) { listBox1.Items.Add(del); } MessageBox.Show("Kişi Silindi", "☺", MessageBoxButtons.OK, MessageBoxIcon.Information); } private void btnBaşlat_Click(object sender, EventArgs e) { Random sayi = new Random(); int kura = sayi.Next(cekilis.Count); MessageBox.Show("Çekilişimizi Kazanan " + cekilis[kura] + " Tebrikler"); } } }