I\'ve extracted the setting names and their respective values out of a configuration file into an ordered dictionary. The dictionary contains keys and values which are of th
this Func may help you . it add every list object to grid view
private void show_data() { BindingSource Source = new BindingSource(); for (int i = 0; i < CC.Contects.Count; i++) { Source.Add(CC.Contects.ElementAt(i)); }; Data_View.DataSource = Source; }
I write this for simple database app