MoreEnumerableAppendT Method
            Returns a sequence consisting of the head elements and the given tail element.
            
Namespace: MoreLinqAssembly: MoreLinq (in MoreLinq.dll) Version: 4.4.0+6d97c3b1d482f98300f4446df14742b0e3fafbec
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.