예제 #1
0
        static void Main(string[] args)
        {
            Student s = new Student("Адиль", 1);//creating a student

            s.PrintInfo();
            s.YearInc();
            s.PrintInfo();
        }
예제 #2
0
파일: Program.cs 프로젝트: kadyrzhenis/PP_2
        static void Main(string[] args)
        {
            Student s = new Student("Zhenis", 110686);

            s.PrintInfo();
            s.YearInc();
            s.PrintInfo();

            Console.ReadKey();
        }