我正在尝试在下面的代码中获取字符串列表的列表,并且我得到了一个select
内容:
无法将类型“System.Data.EnumerableRowCollection>”隐式转换为“System.Collections.Generic.List>”
List<List<string>> rows = (from myRow in data.AsEnumerable()
select new List<string> {myRow["FirstName"].ToString(),
myRow["LastName"].ToString(),
myRow["Department"].ToString(),
myRow["Birthdate"].ToString(),
myRow["Description"].ToString()
});
如何获取字符串列表的列表?