<t>While you can use a ForEach extension method, if you want to use just the framework you can do<br/>
<br/>
collection.Select(c => {c.PropertyToSet = value; return c;}).ToList();<br/>
<br/>
```<br/>
<br/>
The `ToList` is needed in order to evaluate the select immediately due to *lazy evaluation*.</t>