[]
Determines whether the items at the specified index can be replaced in the collection.
public static bool CanReplaceRange<T>(this IDataCollection<T> dataCollection, int startingIndex, IEnumerable<T> items) where T : class?
| Type | Name | Description |
|---|---|---|
| IDataCollection<T> | dataCollection | The data collection. |
| int | startingIndex | The index of the item that would be replaced. |
| IEnumerable<T> | items | The items that would be replaced. |
| Type | Description |
|---|---|
| bool |
| Name | Description |
|---|---|
| T |