将数据表转换为的任何快速方法List<List<string>>
?
现在我在做
for (int rowIndex = 1; rowIndex <= stats.EndRowIndex; rowIndex++)
{
List<string> lstOneRowElements = new List<string>();
for (int colIndex = 1; colIndex <= stats.EndColumnIndex; colIndex++)
{
lstOneRowElements.Add(excelDoc.GetCellValueAsString(rowIndex, colIndex).Trim());
}
lstAllData.Add(lstOneRowElements);
}
在哪里
private List<List<string>> lstAllData { get; set; }
有什么更好的方法可以快速完成吗?