How can i create datagridview using 4 different List.
List<string> experience = new List<string>();
List<string> Cname = new List<string>();
List<string> Clink = new List<string>();
List<string> Ccomp = new List<string>();
I have to create four columns in datagridview based on above 4 list. How can i do that. Every List<string> content will be added to datagridview column.
You can not bind with multiple, for this you should create a collection which can store these data in a single.
you can use DataTable or can create a class with four properties, and then make a List of that class, or you can use Tuple class if want to use predefined .net class.
you can try this if using Tuple class, but all list must have same count.
or for datatable you can try