How do I transfer the items contained in one List to another in C# without using foreach?
List
foreach
Here another method but it is little worse compare to other.
List i=original.Take(original.count).ToList();