1-) C# - Classlarla ilgili PROPERTY kullanılan örnek
class Ogrenci
{
public string ad { get; set; }
public string soyad { get; set; }
public string ders{ get; set; }
public string yeni { get; set; }
public void düzenle()
{
yeni= "Öğrencinin Adı: " + ad + " Soyadı: " + soyad + " Dersi: " + ders;
}
}
private void button1_Click(object sender, EventArgs e)
{
Ogrenci ogrenci1 = new Ogrenci();
ogrenci1.ad = textBox1.Text;
ogrenci1.soyad = textBox2.Text;
ogrenci1.ders = textBox3.Text;
ogrenci1.düzenle();
listBox1.Items.Add(ogrenci1.yeni);
}
