I have 4 list. I want to convert these lists into Datatable with 4 columns. Each list assigned into corresponding column into DataTable.
List<string> list1;
List<string> list2;
List<string> list3;
// and
List<string> list4;
this i want to convert datatable as
columns: List1 List2 List3 List4
Can anyone tell me Easy Solution for this?