List attendees = new List();
foreach ...
// Error: \"There are too many target users in the email address array\"
// for more tha
The only difference is that List.GetRange is more efficient than Take(n).ToList()
since it already knows the size of the new list whereas the LINQ methods don't know it's size.
So ToList enumerates the sequence and adds the items to a new list with a doubling algorithm increasing the backing array consecutively. List.GetRange
can create the proper list with the right initial size beforehand and then uses Array.Copy to copy the subset of the source list into the new list [source].