InsertExtensionInsertT Method
            Inserts the elements of a sequence into another sequence at a
            specified index.
            
Namespace: MoreLinq.ExtensionsAssembly: MoreLinq (in MoreLinq.dll) Version: 4.4.0+6d97c3b1d482f98300f4446df14742b0e3fafbec
public static IEnumerable<T> Insert<T>(
	this IEnumerable<T> first,
	IEnumerable<T> second,
	int index
)
<ExtensionAttribute>
Public Shared Function Insert(Of T) ( 
	first As IEnumerable(Of T),
	second As IEnumerable(Of T),
	index As Integer
) As IEnumerable(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static IEnumerable<T>^ Insert(
	IEnumerable<T>^ first, 
	IEnumerable<T>^ second, 
	int index
)
[<ExtensionAttribute>]
static member Insert : 
        first : IEnumerable<'T> * 
        second : IEnumerable<'T> * 
        index : int -> IEnumerable<'T> 
- first  IEnumerableT
- The source sequence.
- second  IEnumerableT
- The sequence that will be inserted.
- index  Int32
- 
            The zero-based index at which to insert elements from
            second.
- T
- Type of the elements of the source sequence.
IEnumerableT
            A sequence that contains the elements of 
first
            plus the elements of 
second inserted at
            the given index.
            In Visual Basic and C#, you can call this method as an instance method on any object of type 
IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).