[]
Determines whether a new range of items can be inserted in the collection at the specified index.
public static bool CanInsertRange<T>(this IDataCollection<T> dataCollection, int index, IEnumerable<T> items) where T : class?
| Type | Name | Description |
|---|---|---|
| IDataCollection<T> | dataCollection | The data collection. |
| int | index | The index where the items would be inserted. |
| IEnumerable<T> | items | The items to be inserted. |
| Type | Description |
|---|---|
| bool |
| Name | Description |
|---|---|
| T |