Read ionic Zip as Memory Stream C#
I am using Ionic.Zip to extract ZipFile to memory stream with this method: private MemoryStream GetReplayZipMemoryStream() { MemoryStream zipMs = new MemoryStream(); using (ZipFile zip = ZipFile.Read(myFile.zip)) { foreach (ZipEntry zipEntry in zip) { if (zipEntry.FileName.StartsWith("Aligning") || zipEntry.FileName.StartsWith("Sensing")) { zipEntry.Extract(zipMs); } } } zipMs.Seek(0, SeekOrigin.Begin); return zipMs; } Once I am done extracting, I want to read the streams and get some of the entries based on the entry filename. How can I do that? I tried by calling with the code below, but I