We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b5688a commit d3717bcCopy full SHA for d3717bc
Excel Shapes/Hide or Unhide Shape/.NET/Hide or Unhide Shape/README.md
@@ -40,7 +40,7 @@ using (ExcelEngine excelEngine = new ExcelEngine())
40
//Saving the workbook as stream
41
FileStream outputStream = new FileStream("Output/Output.xlsx", FileMode.Create, FileAccess.Write);
42
workbook.SaveAs(outputStream);
43
- workbook.Close();
44
- excelEngine.Dispose();
+ outputStream.Dispose();
+ inputStream.Dispose();
45
}
46
```
0 commit comments