C# Creating a Basic Class


/ Published in: C#
Save to your folder(s)

Free


Copy this code and paste it in your HTML
  1. public class Ogrenci
  2. {
  3. public string isim, soyad;
  4.  
  5. public Ogrenci(string x, string y)
  6. {
  7. isim = x;
  8. soyad = y;
  9. }
  10. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.