public static List<T> DataTable2List(DataTable dt, int index)
{
List<T> lst = new List<T>();
lst = (from row in dt.AsEnumerable() select Convert.ChangeType(row[0], typeof(T))).ToList();
return lst;
}
錯誤1無法隱式轉換類型「System.Collections.Generic.List」到「System.Collections.Generic.List」數據表中列出的佈線泛型方法
如何擺脫錯誤的。我不想要功能的通用性。
你想如何使用這種方法? –