Edit a Collection through a DataGrid

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

1) What is the best way to manage a collection like ArrayList (Add, Edit, Remove Items), displayed in a DataGrid
a) using an intermediate DataTable
b) using the IList interface of the collection

2) How do I display the contents of an ArrayList in a DataGrid without a DataTable in between
datagrid.DataSource = myArrayList
is not enough. What additional code is needed

thank you. herbert
 
Back
Top