using System;
class student
{
private string name ;
private int ID ;
private int Year ;
private bool Ismale ;
private int[] Grades ;
public int GetValue()
return this.ID;
}
public void SetValue(int ID)
this.ID = ID;
//----------------------------------
public string GetValue()
return this.name;
public void SetValue(string name)
this.name = name;
public student( string name)
this.name=name;
public student( int ID)
this.ID=ID;
public student( int Year)
this.Year=Year;