Example #1
0
        static void Main(string[] Args)
        {
            Example myExample = new Example();

            StreamWriter writer = new StreamWriter("../../a.xml");

            myExample.Serialize(writer);

            SerializationTable table = new SerializationTable();

            table.m_list.Add(new Example());
            table.m_list.Add(new Example());
            table.m_list.Add(new Example());
            table.m_list.Add(new Example());
            table.m_list.Add(new Example());
            table.m_list.Add(new Example());

            table.Serialize();
        }