/ Published in: C#

Free
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
public class Ogrenci { public string isim, soyad; public Ogrenci(string x, string y) { isim = x; soyad = y; } }
Comments
