Append method
Inserts an element to the end of the enumerable.
Takes the specified element and inserts it at the end of the enumerable.
Implementation
Enumerable<T> Append(T newElement) {
return AppendEnumerable<T>(this, newElement);
}
Inserts an element to the end of the enumerable.
Takes the specified element and inserts it at the end of the enumerable.
Enumerable<T> Append(T newElement) {
return AppendEnumerable<T>(this, newElement);
}