C# 利用反射给不同类型对象同名属性赋值

Posted szsunny

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 利用反射给不同类型对象同名属性赋值相关的知识,希望对你有一定的参考价值。

    public class ObjectReflection
    {
        public static PropertyInfo[] GetPropertyInfos(Type type)
        {
            return type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
        }

        public static void AutoMapping<S, T>(S s, T t)
        {
            // get source PropertyInfos
            PropertyInfo[] pps = GetPropertyInfos(s.GetType());
            // get target type
            Type target = t.GetType();

            foreach (var pp in pps)
            {
                PropertyInfo targetPP = target.GetProperty(pp.Name);
                object value = pp.GetValue(s,null);

                if (targetPP != null && value != null)
                {
                    targetPP.SetValue(t, value, null);
                }
            }
        }

调用方式

//Class1 objfrom,Class2 objto;


ObjectReflection.AutoMapping<Class1, Class2>(objfrom, objto);
//将 objfrom 的属性复制给objto的同名属性。

 

以上是关于C# 利用反射给不同类型对象同名属性赋值的主要内容,如果未能解决你的问题,请参考以下文章

c#利用反射给字段属性赋值

C# 反射动态给属性赋值

c# 如何通过反射 获取属性值

C#用反射实现两个类的对象之间相同属性的值的复制

反射给对象赋值——类型转换

C#反射实例学习及注意内容