1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.Common
- {
- public class NpoiMemoryStream : MemoryStream
- {
- public bool AllowClose { get; set; }
- public override void Close()
- {
- if (AllowClose)
- base.Close();
- }
- }
- }
|