Session

list扩展方法ForEach原理(where,FirstOrDefault同理!)

电脑版发表于:2021/3/11 9:24
      //ForEach的原理就是使用循环
      
      //委托使用循环
       public static void MyForEach<T>(this List<T> item, Action<T> action)
        {
            for (int i = 0; i < item.Count; i++)
            {
                action(item[i]);
            }
        }
        //List也可以替换为List的父类IEnumerable(可使用的类型更广)
        public static void MyForEach<T>(this IEnumerable<T> list, Action<T> action)
         {
            foreach (T item in list)
             {
                action(item);
             }
         }
        
        
        
        
        
        
        //使用自定义的ForEach
           list.MyForEach(item =>
            {
                Console.WriteLine(item.UserName, item.Age, item.Address));
            });


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢