class kişi { public string ad; public int yaş; public tel t = new tel(); public void adsoyad() { MessageBox.Show(ad); } public int yasgetir() { return yaş; } } class tel { public string tele; } private void button1_Click(object sender, EventArgs e) { kişi k = new kişi(); k.ad = "Refik"; k.adsoyad(); k.yaş = 15; MessageBox.Show(k.yasgetir().ToString()); k.t.tele = "555 55 55"; MessageBox.Show(k.t.tele.ToString());