BindingList<T>.AddNewCore Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a new item to the end of the collection.
protected:
virtual System::Object ^ AddNewCore();
protected virtual object AddNewCore ();
protected virtual object? AddNewCore ();
abstract member AddNewCore : unit -> obj
override this.AddNewCore : unit -> obj
Protected Overridable Function AddNewCore () As Object
Returns
The item that was added to the collection.
Exceptions
The new item is not the same type as the objects contained in the BindingList<T>.
Remarks
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 parameterless constructor.