'Declaration Public Shared Function CreateRemoveItemEventArgs( _
ByVal indexIndex at which the item was removed from the collection.As System.Int32, _
ByVal itemRemoved item.As T _
) As CollectionChangeEventArgs(Of T)
public static CollectionChangeEventArgs<T> CreateRemoveItemEventArgs(
System.Int32 index,
T item
)
public: static CollectionChangeEventArgs<T*>* CreateRemoveItemEventArgs(
System.Int32 index,
T* item
)
public:
static CollectionChangeEventArgs<T^>^ CreateRemoveItemEventArgs(
System.Int32 index,
T^ item
)
Parameters
- index
- Index at which the item was removed from the collection.
- item
- Removed item.
Return Value
An instance of the CollectionChangeEventArgs<T> class for CollectionChangeActionType.RemoveItem action.