Hi, thank you for your reply.
I actually tried to compile the source code but failed due to certificate issues, so I took a different approach.
Actually, I came up with a simple solution that works asynchronously as I wanted.
And once again, thanks for your great library, I works just fine (except for 7zip random access, which is really really slow for me, making it unusable)
I actually tried to compile the source code but failed due to certificate issues, so I took a different approach.
Actually, I came up with a simple solution that works asynchronously as I wanted.
InMemoryRandomAccessStream ras = new InMemoryRandomAccessStream();
using (Stream writeBufferStream = ras.AsStreamForWrite())
{
await Task.Run(() =>
{
entry.WriteTo(writeBufferStream);
writeBufferStream.Flush();
}
);
If I manage to compile your Library, I'll see what I can do about the exception.And once again, thanks for your great library, I works just fine (except for 7zip random access, which is really really slow for me, making it unusable)