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