EnumerableExtensionsTryInsertRangeT(IEnumerableT, Int32, IEnumerableT, Boolean, Boolean) Method

Tries to insert the specified collection into the target collection.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
C#
public static bool TryInsertRange<T>(
	this IEnumerable<T> target,
	int index,
	IEnumerable<T> collection,
	bool checkReadOnlyAndBounds = true,
	bool throwError = true
)

Parameters

target  IEnumerableT
The target collection.
index  Int32
The zero-based index at which the collection should be inserted.
collection  IEnumerableT
The collection to insert into the target.
checkReadOnlyAndBounds  Boolean  (Optional)
to return if the target collection is read-only or the index is invalid; to attempt inserting the collection without checking the read-only state and bounds. This parameter is optional.
Default value: .
throwError  Boolean  (Optional)
to forward any exception thrown by a found insert method; to suppress the exceptions thrown by the found insert method and return on failure. This parameter is optional.
Default value: .

Type Parameters

T
The type of the elements in the collections.

Return Value

Boolean
, if the whole collection could be inserted into target; otherwise, .

Usage Note

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).

Remarks

The specified collection can be inserted in the target collection if that is either an IListT or IList implementation.

If target is neither a ListT nor an ISupportsRangeCollectionT implementation, then the elements of collection will only be inserted one by one.

See Also