Last updated 5 years ago
Was this helpful?
Retorna a coleção sem o elemento .
Parâmetros
Retorno
IEnumerable<T> source
IEnumerable<T>
Obtendo o Tail de uma coleção
//IEnumerable<int> source = { 5, 8, 9, 10 } IEnumerable<int> result = source.Tail(); //result = { 8, 9, 10 }
Head