Last updated 5 years ago
Was this helpful?
Returns the collection without the element.
Parameters
Returns
IEnumerable<T> source
IEnumerable<T>
Getting the collection Tail
//IEnumerable<int> source = { 5, 8, 9, 10 } IEnumerable<int> result = source.Tail(); //result = { 8, 9, 10 }
Head