标签:
/// <summary>
/// 根据源对象的属性填充目标对象的对应字段
/// </summary>
/// <param name="source">源对象</param>
/// <param name="target">目标对象</param>
public static void GetViewModelProperties(object source, object target)
{
if (source != null)
{
foreach (PropertyInfo item in target.GetType().GetProperties())
{
//获取对象中的实例>属性>某一个字段进行对比 item.name 获取字段
var attr = source.GetType().GetProperties().FirstOrDefault(p => p.Name == item.Name);
if (attr != null)
{
//SetValue 设置值 GetValue 获取值
item.SetValue(target, attr.GetValue(source, null), null);
}
}
}
}
}
标签:
原文地址:http://www.cnblogs.com/louby/p/4852743.html