我正在使用库 LinqToExcel 来读取我的 mvc4 项目中的 excel 文件。我的问题是当我尝试阅读第 4 行的标题时......我该怎么做?
在项目中,存在一个返回所有列名的函数,但我认为这些列需要位于第 0 行。
// Summary:
// Returns a list of columns names that a worksheet contains
//
// Parameters:
// worksheetName:
// Worksheet name to get the list of column names from
public IEnumerable<string> GetColumnNames(string worksheetName);
谢谢。