For replacing foreach loop, for a non-query operation, just for performing an operation on each element in the collection, we can use the ForEach method, like the following:
foreach
ForEach
students.ToList().ForEach(s => { s.Grade += 10; });
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)