I am using LinqToExcel and i want to be able to get the names of all sheets in an excel file and compare it with an input from my html form such that when the input does not match any of the names on the excel sheet the system will throw an exception. How do i go about using LinqToExcel to do this

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The documentation says:

The GetWorksheetNames() method can be used to retrieve the list of worksheet names in a spreadsheet.

var excel = new ExcelQueryFactory("excelFileName");
var worksheetNames = excel.GetWorksheetNames();
link|improve this answer
Yes i have seen this method but my question is how do i use this to get the list of the sheet names? – plasteezy Aug 29 '11 at 16:54
The method returns the list of sheet names in your Excel file. Is that not what you want ? – driis Aug 29 '11 at 16:55
wat syntax should i use to retrieve the sheet names? – plasteezy Aug 29 '11 at 17:04
The worksheetNames variable is an IEnumerable<string>. It contains the names. – driis Aug 29 '11 at 17:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.