views:

468

answers:

2

How can I databind a gridview to an arraylist in .NET?

I am using .NET 3.5 and Visual Studio 2008.

+1  A: 

In place of arraylist use generic class BindingList. It will allow you to bind this list in two direcions to DataGridView. So your change in BindingList will be reflected in DGV and vice versa.

Here you have more information about BindingList class: http://msdn.microsoft.com/en-us/library/ms132679.aspx

tomaszs
A: 

Easiest thing to do would be to build an alternate collection; try a List<> or a BindingList<>.

GWLlosa