我想將第一行的日期存儲到列表字符串中。如何將它們轉換爲來自對象的列表字符串?C#將對象轉換爲列表<string>
public List<string> populateDates(string id)
{
List<string> dates = new List<string>();
for (int i = 1; i < table.Columns.Count; i++)
{
object o = table.Rows[1][i];
Console.WriteLine(o);
}
return dates;
}
什麼是「表格」,以及爲什麼要將日期存儲爲字符串?你能告訴我們一個'table.Rows [1] [i]'是什麼的例子嗎? –
所有你需要的日期。添加(o.ToString());它會以字符串格式存儲日期/日期時間 –
@DourHighArch表是一個數據表....我試圖從excel表中存儲時間 – Cscience18