how to use foreach loop in linq c# code example
Example 1: linq foreach c#
sequence.Where(x => x.Name.ToString().Equals("Apple"))
.ToList()
.ForEach( x =>
{
if(someCondition)
{
// Do some stuff here.
}
});
Example 2: foreach c# linq example
items.ToList().ForEach(i => i.DoStuff());