views:

76

answers:

1

Is there an alternative to load data from a datagridview into a class than to iterate through the datagridview?

+1  A: 
IEnumerable myList = myDataGrid.ItemsSource;
sipwiz