Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Student st      = new Student(5, new Random());
            Student st_copy = (Student)st.DeepCopy();

            Console.WriteLine("Student");
            Console.WriteLine(st);
            Console.WriteLine("\n\ncopy");
            Console.WriteLine(st_copy);

            StudentList stlist = new StudentList();

            stlist.AddDefaults();

            StudentList.Save("../../../stlist", stlist);


            Console.ReadKey();
        }