Closed sergey-tihon closed 3 years ago
In-memory Excel generation should be possible.
Currently it is possible only using file system
var filePath = Path.GetTempFileName(); try { SpreadsheetWriter.Write(filePath, wb); return new MemoryStream(File.ReadAllBytes(filePath)); } finally { if (File.Exists(filePath)) File.Delete(filePath); }
In-memory Excel generation should be possible.
Currently it is possible only using file system