-
I'd like to keep a compressed zip file in memory and use ZipArchive to read it as though it were on disk. Is that possible? |
Beta Was this translation helpful? Give feedback.
Answered by
elgonzo
Dec 3, 2023
Replies: 1 comment
-
Yes, of course. A |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
danmoseley
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, of course. A
System.IO.Compression.ZipArchive
instance operates on aSystem.IO.Stream
instance, and that includes instances ofSystem.IO.MemoryStream
.