How do I transfer the items contained in one List to another in C# without using foreach?
List
foreach
And this is if copying a single property to another list is needed:
targetList.AddRange(sourceList.Select(i => i.NeededProperty));