GetLastN
Returns the last n elements in a collection.
- Use
IEnumerable.Count()to check if the enumerable is non-empty. - Use
IEnumerable.Skip(list.Count() - n)to get the lastnelements. - If the enumerable object is empty, return the
default()value for the given enumerable. - Omit the second argument,
n, to use a default value of1.