I'm wondering how to raise the column names or properties of a worksheet into UPPERCASE without knowing how many there are or what their contents is?
My current code is as follows:
var excel = new ExcelQueryFactory(fileLocation);
var dataSheet = from c in excel.Worksheet(0) select c;