摘要: 象正面的对象数组的XML序列化不用特别去考虑 object[] objs = new object[] { 1, "2222", 33 }; 如果是下面的array呢? object[] objs = new object[] { 1, "2222", 33 }; object[] objs2 = new object[] { 2, "kevin", 35 }; System.Collections.ArrayList array = new System.Collections.ArrayList(); array.Add(objs); array.Add(objs2); 阅读全文
posted @ 2009-11-13 10:31 生命体验之kevin-Y 阅读(4396) 评论(1) 推荐(0) 编辑