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