'Declaration
<ExtensionAttribute()> Public Shared Function CanRemove(Of T As Class)( _ ByVal collectionView As ICollectionView(Of T), _ ByVal index As Integer _ ) As Boolean
'Usage
Dim collectionView As ICollectionView(Of T) Dim index As Integer Dim value As Boolean value = ICollectionViewEx.CanRemove(Of T)(collectionView, index)
[Extension()] public static bool CanRemove<T>( ICollectionView<T> collectionView, int index ) where T: class
Parameters
- collectionView
- The collection view.
- index
- The index of the item that would be removed.
Type Parameters
- T