首页 > 其他 > 详细

对List泛类。修改值的一个简单扩展

时间:2015-05-13 12:16:13      阅读:142      评论:0      收藏:0      [点我收藏+]
 public static void EditValue<T>(this IList<T> array, Func<T, bool> where, T newobjs)
        {
            Type t = typeof(T);
            if (array.Any(where))
            {
                foreach (T item in array)
                {
                    if (where(item))
                    {
                        var allpro = t.GetProperties();
                        foreach (PropertyInfo pi in t.GetProperties())
                        {
                            pi.SetValue(item, pi.GetValue(newobjs, null), null);
                            Logger.Default.Info(pi.GetValue(item, null).ToString());
                        }

                    }
                }
            }
            else
            {
                array.Add(newobjs);
            }
           
        }

  

对List泛类。修改值的一个简单扩展

原文:http://www.cnblogs.com/jizhongfong/p/4499938.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!