jWilson,
Are we not talking about apples and pears.
A generic list is a collection class.
http://msdn2.microsoft.com/en-us/library/6sh2ey19.aspx
The Bindinglist a more generic way of using databinding
http://msdn2.microsoft.com/en-us/library/ms132679.aspx
In other words a generic list can be bind to da bindingsource, however as
well using the generic bindinglist (I never did the latter by the way).
Cor
"jwilson128" <(E-Mail Removed)> schreef in bericht
news:(E-Mail Removed)...
>I am trying to decide whether to use a
> system.ComponentModel.BindingList(of T) or a
> Sytem.Collections.Generic.List(of T) for a custom collection. In
> testing a simple, read-only data binding to a data grid view - they
> both work. Are there aspects of databinding that the regular list will
> not support and vice-versa, is there any reason to choose a regular
> list over the bindinglist? -Jeff
>