'Declaration
Public Shared Function CanReplaceRange(Of T As Class)( _ ByVal dataCollection As IDataCollection(Of T), _ ByVal startingIndex As Integer, _ ByVal items As IEnumerable(Of T) _ ) As Boolean
public static bool CanReplaceRange<T>( IDataCollection<T> dataCollection, int startingIndex, IEnumerable<T> items ) where T: class
Parameters
- dataCollection
- The data collection.
- startingIndex
- The index of the item that would be replaced.
- items
- The items that would be replaced.
Type Parameters
- T