码迷,mamicode.com
首页 > 其他好文 > 详细

序列化实现 深拷贝

时间:2014-07-01 00:24:55      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   for   

 1         private static Object DeepClone(Object original)
 2         {
 3             using (MemoryStream stream = new MemoryStream())
 4             {
 5                 BinaryFormatter formatter = new BinaryFormatter();
 6 
 7                 formatter.Context = new StreamingContext(StreamingContextStates.Clone);
 8 
 9                 formatter.Serialize(stream, original);
10 
11                 stream.Position = 0;
12 
13                 return formatter.Deserialize(stream);
14             }
15         }

 

序列化实现 深拷贝,布布扣,bubuko.com

序列化实现 深拷贝

标签:des   style   blog   color   os   for   

原文地址:http://www.cnblogs.com/hellolong/p/3816448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!