Convert BindingList<MyObject> to List<MyObject> c#
bindinglist, c#
Solution
Try this
List<int> list = yourBindingList.ToList();
int is your type =)
Problem
How can I convert BindingList to List ?
bindinglist, c#
Try this
List<int> list = yourBindingList.ToList();
int is your type =)
How can I convert BindingList to List ?