Hello,
please find attached a zip file with both a viaef export file for XIDE and a prg file to use with Visual Studio.
This code was donated by Nick Friend, and translated to X# by myself.
I have left the original C# code as comment in the file.
Wolfgang
Compressor class donated by Nick Friend
Compressor class donated by Nick Friend
Wolfgang Riedmann
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Meran, South Tyrol, Italy
wolfgang@riedmann.it
https://www.riedmann.it - https://docs.xsharp.it
Compressor class donated by Nick Friend
Hello Wolfgang,
What does it do? Do you maybe have some lines of code that shows how it can be used?
Dick
What does it do? Do you maybe have some lines of code that shows how it can be used?
Dick
-
- Posts: 248
- Joined: Fri Oct 14, 2016 7:09 am
Compressor class donated by Nick Friend
Hi Dick,
It's just a dead simple class that takes most types of info... string, object, stream, byte array... and returns it as a compressed byte array that you can eg. store in a byte[] field in a database.
We use it for compressing text documents, xml info, long strings, etc. before storing them. Them when you retrieve you just use the corresponding DecompressXXX method to get back to the original type.
I offered it because I saw Wolfgang doing something similar/related with his generic serialisation class.
HTH
Nick
It's just a dead simple class that takes most types of info... string, object, stream, byte array... and returns it as a compressed byte array that you can eg. store in a byte[] field in a database.
We use it for compressing text documents, xml info, long strings, etc. before storing them. Them when you retrieve you just use the corresponding DecompressXXX method to get back to the original type.
I offered it because I saw Wolfgang doing something similar/related with his generic serialisation class.
HTH
Nick