static void Main(string[] args) { Student student = new Student("Kudaibergen Adil", "18BD116446", "1"); // creating class student with 3 parametrs student.PrintStudent(); // urging the printing function student.IncreamentYear(); // urging increamenting method student.PrintStudent(); // urging the printing function }
static void Main(string[] args) { Student first = new Student("Kiori", "18BD123455", 18); first.PrintStudent(); }
static void Main(string[] args) { Student first = new Student("Batyrbek", "18BD174334", 1); first.PrintStudent(); }