private void button3_Click(object sender, EventArgs e) { Kullanici kullanici = new Kullanici(); kullanici.KullaniciID = Convert.ToInt32(dataGridView1.CurrentRow.Cells["KullaniciID"].Value); kullanici.KullaniciAd = textBox1.Text; kullanici.KullaniciSifre = textBox2.Text; if (Kullanicilar.Update(kullanici)) { MessageBox.Show("Düzenleme Başarılı"); dataGridView1.DataSource = Kullanicilar.Select(); } else { MessageBox.Show("Düzenleme İşleminde Hata Oldu"); } }