Convert BindingList<MyObject> to List<MyObject> c#

Dimitar Tsonev picture Dimitar Tsonev · Apr 18, 2012 · Viewed 14.1k times · Source

How can I convert BindingList to List ?

Answer

LuckSound picture LuckSound · Apr 18, 2012

Try this

List<int> list = yourBindingList.ToList();

int is your type =)