Workbook book = new Workbook(path); WorksheetCollection myColection = book.Worksheets; int k1 = myColection.Count; string[] name = new string[k1]; for (int i = 0; i < k1; i++) { name[i] = myColection[i].Name; }