SyntaxFix
Write A Post
Hire A Developer
Questions
You could use ForEach, but you have to convert the IEnumerable<T> to a List<T> first.
ForEach
IEnumerable<T>
List<T>
list.Where(w => w.Name == "height").ToList().ForEach(s => s.Value = 30);