集合的扩展方法ForEach的使用

 

            List<int> list = new List<int>() { 1, 3, 4, 56, 77 };
            list.ForEach(p => Console.WriteLine(p));

 

或者

            List<int> list = new List<int>() { 1, 3, 4, 56, 77 };
            list.ForEach(p =>
            {
                Console.WriteLine(p);
            });

 

你可能感兴趣的:(集合的扩展方法ForEach的使用)