I have dynamic list item. This list is not static. In view of the necessity, I will have at least one/more list. what I need is, I gotta split that list into at least two unique records. This I can part. Yet, I need to bind this list into datagridview.
This is my code: I have two list,
List<string> list1=new List<string>();
list1.add("THE BOOK OF BURGER");
list1.add("The Hogwarts Library");
list1.add("NEW Day in the Life of a Farmer");
List<string> list2=new List<string>();
list2.add("$200");
list2.add("$150");
list2.add("$170");
.....
list3,
list4.. etc..
I have Datagridview. I want to bind this into data grid view as,

how might I add datasource to this datagridview? I tired to include this into datatable. In any case, I couldn't accomplish this. Any help would be truly valued.

BooKclass and shape your data in aList<Book>and bind the grid to the list.