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.
List listName = dataTableName.AsEnumerable().Select(m => new MyType() { ID = m.Field("ID"), Description = m.Field("Description"), Balance = m.Field("Balance"), }).ToList()