MoreEnumerableAppendT Method
            Returns a sequence consisting of the head elements and the given tail element.
            
Namespace: MoreLinqAssembly: MoreLinq (in MoreLinq.dll) Version: 4.0.0+092a40d82a1b280568ffa006d9a210bdec0792cd
public static IEnumerable<T> Append<T>(
	IEnumerable<T> head,
	T tail
)
Public Shared Function Append(Of T) ( 
	head As IEnumerable(Of T),
	tail As T
) As IEnumerable(Of T)
public:
generic<typename T>
static IEnumerable<T>^ Append(
	IEnumerable<T>^ head, 
	T tail
)
static member Append : 
        head : IEnumerable<'T> * 
        tail : 'T -> IEnumerable<'T> 
- head  IEnumerableT
 - All elements of the head. Must not be null.
 - tail  T
 - Tail element of the new sequence.
 
- T
 - Type of sequence
 
IEnumerableTA sequence consisting of the head elements and the given tail element.
 This operator uses deferred execution and streams its results.