예제 #1
0
파일: Program.cs 프로젝트: Alex1080/SandBox
        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();
        }