79355611

Date: 2025-01-14 16:11:11
Score: 1.5
Natty:
Report link

Can be used with Ionic.Zip

using Ionic.Zip
using (ZipFile zip = ZipFile.Read(Stream))
{
     foreach (ZipEntry e in zip)
     {
         //To receive Stream
         MemoryStream stream = new MemoryStream();
         e.Extract(stream);
     }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can
  • Low reputation (1):
Posted by: user16626854