What is the difference between the System.ComponentModel.BindingList
methods Add(object)
and AddNew()
? The MSDN documentation says this:
It seems like both methods add an item to the collection, but Add(object)
does it in one shot whereas AddNew()
is slightly more complicated. My tests with Add(object)
seem to be working, but I want to know if I am using the correct method.
So what is the difference between these methods?
.EndNew
and I was so confused. The metadata on.AddNew
really should mention this requirement! – Worthy