using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; namespace ConsoleApplication1 { public cla
If you wanted to do an update to multiple elements...
foreach (var f in mylist.FindAll(x => x.id == 1)) { f.id = car3.id; f.color = car3.color; f.make = car3.make; }