我正在从 Excel 表中检索单元格,这是我得到的输出。
Cell A2 has value 113,295
Cell B2 has value 540
Cell C2 has value 41,044
Cell A3 has value 192,653
Cell B3 has value 510
Cell C3 has value 41,037
代码:
using (ExcelPackage package = new ExcelPackage(existingFile))
{
ExcelWorksheet sheet = package.Workbook.Worksheets[1];
//Select all cells in column d between 9990 and 10000
var query1 = (from cell in sheet.Cells["A2:C2"] select cell);
int count = 0;
string[] s = null;
foreach (var cell in query1)
Console.WriteLine("Cell {0} has value {1:N0}", cell.Address, cell.Value);
}
我的问题是我想创建一个包含成员 a、b 和 c 的类,并且我想要一个 List<> 来保存这些对象的集合。
目前,它正在迭代,但我不知道 for 循环中哪个单元格是 A、B 或 C。