nils måsén
nils måsén
No idea what version 0.855.5.452 is. But if the scan report is pointing to the `Create` method, then the problem is not in SharpZipLib, but rather in how you are...
I have added a toggle for the flushing to outputbuffer and added a test that runs using FileOptions.WriteThrough. With the `SkipFlushOnEveryBlock` flag turned **off**: ``` Time 00:14.791 throughput 127.03 MB/s...
I think using [Stream.Synchronized(Stream)](https://docs.microsoft.com/en-us/dotnet/api/system.io.stream.synchronized?view=net-5.0) should be roughly equivalent to using `SemaphoreSlim` (preventing _our_ code from altering the stream). Now, the problem is that it would still not be restricting code...
Yeah, I just don't know what else this is meant to do? The original code is synchronous, so what was the point? Also `Stream.Synchronized` doesn't help that much as it's...
What is the error you are getting? Why wouldn't temporary files work on android?
Yes, the "problem" is that `ZipInputStream` works very differently to `ZipFile`, so it has to be implemented in another (more complex) way.
I assume this is not the file X of Y percentage, but rather the individual file percentages. The aforementioned type can be achieved with `ZipFile` and its file events.
I think adding it back to the assembly would be fine, as I don't think there are any non-CLS features being exposed, but what is this trying to solve?
Yeah, sorry. What is it you are trying to solve with this? I know what the attribute does, but it's not needed for VB and F# usage afaik. Do you...
Okay, this should be fine then. Could you fix the merge conflict? I cannot do it through Github since it will directly commit to master. ```cs using System; using System.Runtime.CompilerServices;...