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

            s.PrintInfo();
            s.YearInc();
            s.PrintInfo();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Student s = new Student("Zhenis", 110686);

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

            Console.ReadKey();
        }