1.工具(T) > Nuget套件管理員(N) > 管理方案的Nuget套件...
2.搜尋LinqToExcel
3.安裝 (按步驟安裝)
4.安裝完成
5.宣告類別
public class InputExcelData{public string ColumnA { get; set; } //只宣告需要用的欄位也可public string ColumnB { get; set; }public string ColumnC { get; set; }}
6.呼叫使用
if (System.IO.File.Exists(fullPath)) //判斷檔案是否存在{var book = new LinqToExcel.ExcelQueryFactory(fullPath);var InputData = from x in book.Worksheet<InputExcelData>(0)select x;foreach (var rowInput in InputData){string S= ColumnEmpty(rowInput.ColumnA);}}
沒有留言:
張貼留言