'Declaration
Public Shared Function CanMoveRange(Of T As Class)( _ ByVal dataCollection As IDataCollection(Of T), _ ByVal fromIndex As Integer, _ ByVal toIndex As Integer, _ ByVal count As Integer _ ) As Boolean
public static bool CanMoveRange<T>( IDataCollection<T> dataCollection, int fromIndex, int toIndex, int count ) where T: class
Parameters
- dataCollection
- The data collection.
- fromIndex
- The original index.
- toIndex
- The destination index.
- count
- The number of items to be moved.
Type Parameters
- T