I currently have the following code to add a blank worksheet to a workbook using ClosedXML. Wondering if there is an easier way without specifying the name of the worksheet as in "Sheet1" even though "Sheet1" is named that way by default when you open Excel.
using (XLWorkbook wb = new XLWorkbook())
{
wb.Worksheets.Add("Sheet1");
MemoryStream fs = new MemoryStream();
wb.SaveAs(fs);
fs.Position = 0;
return fs;
}