-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.cs
29 lines (27 loc) · 958 Bytes
/
student.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class student
{
String isim;
String soyad;
int ogr_no;
double gano;
int bolum_sira;
int sinif_sira;
int sınıf;
String cinsiyet;
public string Isim { get => isim; set => isim = value; }
public string Soyad { get => soyad; set => soyad = value; }
public int Ogr_no { get => ogr_no; set => ogr_no = value; }
public double Gano { get => gano; set => gano = value; }
public int Bolum_sira { get => bolum_sira; set => bolum_sira = value; }
public int Sinif_sira { get => sinif_sira; set => sinif_sira = value; }
public int Sınıf { get => sınıf; set => sınıf = value; }
public string Cinsiyet { get => cinsiyet; set => cinsiyet = value; }
}
}