I am reading an excel file but not all the files have the same column headers but the column order are always the same. I want to read the excel file using linq but not specifying specific column names but could i use just columns based on their order?
var _excelFile = new ExcelQueryFactory(openFileDialog1.FileName);
var _info = from x in _excelFile.Worksheet()
select new
{
};