how to get the sheets no in excel package workbook in c# code example
Example: how to get the sheets no in excel package workbook in c#
foreach (var sheet in package.Workbook.Worksheets)
{
Console.WriteLine(sheet.Name);
}