-1
我需要將類型爲List<string>[]
的列表數組轉換爲C#中的Datatable。C#List <string> [] to Datatable
我發現許多與List<string[]>
相關的主題轉換爲Datatable,但沒有任何關於我需要的轉換。
僞代碼:
//Retrieve data from MySQL server
db.Select(category, productID);
//populate List<string>[] array
list[0] = db.ListQuery[0];
list[1] = db.ListQuery[1];
//convert list[] to Datatable
.....
任何幫助深表感謝。
什麼是 「轉換」 的規則?此外,你不想要轉換。你想用'List'的數據填充'DataTable'。 –
Dennis
@ Dennis'list []'與'列表'不同。我提到在標題和大膽它...任何方式,我通過使用'MySQLDataAdapter'而不是'MySQLDataReader'來解決問題,並直接填充表。 –
Alex