I have a popuplated IEnumerable collection.
IEnumerable
I want to remove an item from it, how can I do this?
foreach(var u in users) {
You can't remove IEnumerable elements, but you can use the Enumerable.Skip Method