Example #1
0
 public static bool CompressOne(this ICompressorWrapper wrapper, string type, Stream stream, string fileName, Stream fileStream)
 {
     return(wrapper.CompressMultiple(type, stream, new Dictionary <string, Stream>()
     {
         { fileName, fileStream }
     }));
 }