摘要: class SerializeTool { public static object DeepClone(object original) { //释放流对象 using (Stream stream = new MemoryStream()) { BinaryFormatter formatter = new BinaryFormatter(); formatter.Serialize(stream, formatter); ... 阅读全文
posted @ 2012-12-05 08:53 viola 阅读(223) 评论(0) 推荐(0) 编辑