摘要: public class DeepCopyHelper { //三种深拷贝方法 public static T DeepCopyByReflect(T obj) { //如果是字符串或值类型则直接返回 if (obj is string || obj.GetType().IsValueType... 阅读全文
posted @ 2019-03-31 23:46 沙耶 阅读(671) 评论(0) 推荐(1) 编辑