BindingList<T>::AddNewCore Method ()
.NET Framework (current version)
Adds a new item to the end of the collection.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| InvalidCastException | The new item is not the same type as the objects contained in the BindingList<T>. |
The AddNewCore method adds a new item to the collection represented by the Items property. AddNewCore raises the AddingNew event. This allows you to add a new item by setting the NewObject property of the AddingNewEventArgs parameter to the new item. Otherwise, the new item is automatically created through its public default constructor.
.NET Framework
Available since 2.0
Available since 2.0
Show: