Esempio n. 1
0
File: Program.cs Progetto: Pazyl/PP2
        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();
        }