根据反射给实体对象赋值

 1       /// <summary>
 2         /// 根据反射给实体对象赋值
 3         /// </summary>
 4         /// <typeparam name="T">已赋值的对象</typeparam>
 5         /// <typeparam name="L">要被赋值的对象</typeparam>
 6         /// <param name="t">已赋值的对象的实例化</param>
 7         /// <returns></returns>
 8         public static L SetProperties<T, L>(T t) where L : new()
 9         {
10             if (t == null)
11             {
12                 return default(L);
13             }
14             System.Reflection.PropertyInfo[] propertiesT = typeof(T).GetProperties(System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.Public);
15             System.Reflection.PropertyInfo[] propertiesL = typeof(L).GetProperties(System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.Public);
16             //if (propertiesT.Length != propertiesL.Length || propertiesL.Length == 0)
17             //{
18             //    return default(L);
19             //}
20             L setT = new L();
21             foreach (System.Reflection.PropertyInfo itemL in propertiesL)
22             {
23                 foreach (System.Reflection.PropertyInfo itemT in propertiesT)
24                 {
25 
26                     if (itemL.Name == itemT.Name)
27                     {
28 
29                         object value = itemT.GetValue(t, null);
30 
31                         itemL.SetValue(setT, value == null ? null : Convert.ChangeType(value, itemL.PropertyType), null);
32                     }
33                 }
34             }
35             return setT;
36         }

转载于:https://www.cnblogs.com/Wendell-Wang/p/4975159.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值