I have an strongly typed DataTable of type MyType, I\'d like convert it in a List.
MyType
List
How can I do this ?
Thanks.
Create a list with type by extend the datatable with AsEnumerable call.
datatable
AsEnumerable
var mylist = dt.AsEnumerable().ToList();
Cheers!! Happy Coding