Пример #1
0
        static void Main(string[] args)
        {
            Student s = new Student()
            {
                age = 44,
                group = 13,
                name = "Yurii"
            };

            s.PrintAllProperties();

            Console.WriteLine("\n" + new string('+', 30));

            Console.ReadLine();
        }