Parameter | Type | Description |
---|---|---|
index | int | The 0-based index at which item should be inserted. |
item | object | The object to insert. The value can be null. |
The InsertItem is meant to be overridden in a derived class. For a public method to insert an item in the LeadCollection, see Insert.
LeadCollection accepts null as a valid value for reference types and allows duplicate items.
If index is equal to Count, item is added to the end of LeadCollection.
This method raises the CollectionChanged event with Add action.