摘要: public static T Deserializer(string path) { try { System.Xml.XmlDocument xd = new System.Xml.XmlDocument(); xd.LoadXml(path); MemoryStream stream = new MemoryStream(); xd.Save(stream); XmlSerializ... 阅读全文
posted @ 2013-10-30 19:06 ``炯`` 阅读(352) 评论(0) 推荐(0) 编辑