摘要: 1 public class DeepClone 2 { 3 public static object CopyObject(Object obj) 4 { 5 if (obj == null) 6 { 7 return null; 8 } 9 Object targetDeepCopyObj; 1 阅读全文
posted @ 2016-07-06 10:57 ~扎克伯格 阅读(387) 评论(0) 推荐(0) 编辑