Exemple #1
0
        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
        }