EnumerableExtensionsTryInsertT(IEnumerableT, Int32, T, Boolean, Boolean) Method
Tries to insert the specified item at the specified index to the collection.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static bool TryInsert<T>(
this IEnumerable<T> collection,
int index,
T item,
bool checkReadOnlyAndBounds = true,
bool throwError = true
)
<ExtensionAttribute>
Public Shared Function TryInsert(Of T) (
collection As IEnumerable(Of T),
index As Integer,
item As T,
Optional checkReadOnlyAndBounds As Boolean = true,
Optional throwError As Boolean = true
) As Boolean
public:
[ExtensionAttribute]
generic<typename T>
static bool TryInsert(
IEnumerable<T>^ collection,
int index,
T item,
bool checkReadOnlyAndBounds = true,
bool throwError = true
)
[<ExtensionAttribute>]
static member TryInsert :
collection : IEnumerable<'T> *
index : int *
item : 'T *
?checkReadOnlyAndBounds : bool *
?throwError : bool
(* Defaults:
let _checkReadOnlyAndBounds = defaultArg checkReadOnlyAndBounds true
let _throwError = defaultArg throwError true
*)
-> bool
- collection IEnumerableT
- The collection to insert the item into.
- index Int32
- The zero-based index at which item should be inserted.
- item T
- The item to be inserted.
- checkReadOnlyAndBounds Boolean (Optional)
- to return if the collection is read-only or the index is invalid; to attempt inserting the element 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: .
- T
- The type of the elements in the collection.
Boolean if an inserting method could be successfully called;
if such method was not found, or
checkReadOnlyAndBounds is
and the collection was read-only,
or
throwError is
and the inserting method threw an exception.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).
The item can be inserted into the collection if that is either an IListT or IList implementation.