Reputation: 839
Is there an alternative to load data from a datagridview into a class than to iterate through the datagridview?
Upvotes: 0
Views: 147
Reputation: 30699
IEnumerable myList = myDataGrid.ItemsSource;
Upvotes: 1