Hello
I' going to Load Data from a nested generic list and Bind it to a radGridView. But I could not do that
this is my list:
List<List<
string
>> Mylist =
new
List<List<
string
>>();
Mylist.Add(
new
List<
string
> { str1, str2, str3 });
DGV1.DataSource = Mylist;
Does anyone knows How I can Bind Mylist to the grid?
thanks