C#通过反射实现两个对象相同属性值的复制

2021-07-11 08:08

阅读:632

标签:serial   tor   实体类   turn   Matter   vat   data   convert   深拷贝   

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Security.Permissions;
 5 using System.Data;
 6 using MySql.Data;
 7 using System.Configuration;
 8 using System.IO;
 9 using System.Text;
10 using System.Reflection; 
11 using MySql.Data.MySqlClient;
12 using System.Runtime.Serialization;
13 using System.Runtime.Serialization.Formatters.Binary;
14 
15 
16 namespace WebApplication1.Common
17 {
18     public static class ConvertUtil
19     {
21         /// 
22         ///23         /// 将Tsource类中的属性拷贝到T中
24         /// 
25         /// 拷贝目标实体类
26         /// 源实体类
27         /// 
28         /// 
29         public static T ShallowCopy(Tsource source)
30         {
31             T t = Activator.CreateInstance();
32             try
33             {
34                 var sourceType = source.GetType();//获得类型
35                 var Typed = typeof(T);
36                 foreach (PropertyInfo sp in Typed.GetProperties())//获得类型的属性字段
37                 {
38                     var sValue = sourceType.GetProperty(sp.Name); // 找到源实体类的属性信息
44                     if (sValue != null)
45                     {
46                         sp.SetValue(t, sValue.GetValue(source, null), null);
47                     }
48                 }
49             }
50             catch (Exception ex)
51             {
52                 throw ex;
53             }
54             return t;
55         }
56 
57         /// 
58         ///59         /// 将Tsource类中的属性用深拷贝到T中
60         /// 
61         /// 拷贝目标实体类
62         /// 源实体类
63         /// 
64         /// 
65         public static T DeepCopy(Tsource source)
66         {
67             //TODO  采用序列化的方式进行深拷贝
68 
82             return default(T);
83         }
84 
85     }
86 }

 

C#通过反射实现两个对象相同属性值的复制

标签:serial   tor   实体类   turn   Matter   vat   data   convert   深拷贝   

原文地址:https://www.cnblogs.com/MacrossFT/p/9652706.html


评论


亲,登录后才可以留言!