If you hate doing a for loop or for each loop just to update a property in your list / collection object, below is how you can do it using Linq in a single statement.
list.ForEach(item => list.Description = "Hello");
Tip: Update Collection / List Property Using Linq