C# 同類型實體賦值


        #region 更新賦值,前者賦值給后者
        public static void ShadowCopy(object a, object b)
        {
            if (a == null) return;

            if (a.GetType() == b.GetType())
            {
                PropertyInfo[] properties = a.GetType().GetProperties();

                foreach (var p in properties)
                {
                    var value = p.GetValue(a, null);
                    if (value != GetDefault(p.GetType()))
                        p.SetValue(b, value, null);
                }
            }
        }

        public static object GetDefault(Type type)
        {
            if (type.IsValueType)
            {
                return Activator.CreateInstance(type);
            }
            return null;
        }

        #endregion

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM