Exemple #1
0
        static void Main(string[] args)
        {
            Student s = new Student("Dulat", 18111264); // создать new object для class Student

            s.GetInfoName();                            // output name
            s.GetInfoId();                              // output id

            s.GetInfoYear(2019);                        // output year of study

            Console.ReadLine();
        }