摘要: 1.xml 集合序列化和发序列化1.1 对象结构 public class People { [XmlAttribute("NAME")] public string Name { set; get; } [XmlAttribute("AGE")] public int Age { set; get; } } [XmlRoot("Root")] public class Student : People { [XmlElement("CLASS")] public string Class { set; get; 阅读全文
posted @ 2012-01-11 19:20 草青工作室 阅读(310) 评论(0) 推荐(0) 编辑