Re: [Mono-list] System.IO.Compression

2015-05-10 Thread Baltasar García Perez-Schofield
Hi, Jonathan, ZipArchive and ZipFile have been present since at least Mono 3.2.0: https://github.com/mono/mono/tree/mono-3.2.0-branch/mcs/class/System.IO.Compression Thank you, I guess I was using 3.1x, because I was getting a NotImplementedException. Anyway, I went to the Mono web and saw

Re: [Mono-list] System.IO.Compression

2015-05-10 Thread Jonathan Pryor
On May 8, 2015, at 10:19 AM, Baltasar García Perez-Schofield baltas...@gmail.com wrote: Are there any plans to implement System.IO.Compression? Or maybe that now the library is open-sourced, will it be added to mono any time soon? Which types? DeflateStream has been present since at least

[Mono-list] System.IO.Compression

2015-05-08 Thread Baltasar García Perez-Schofield
Hi! Are there any plans to implement System.IO.Compression? Or maybe that now the library is open-sourced, will it be added to mono any time soon? -- Baltasar ___ Mono-list maillist - Mono-list@lists.ximian.com

[Mono-list] System.IO.Compression

2007-06-06 Thread Ian Su
Hi, Somehow I'm having trouble getting GZipStream to work in mono. It's as if System.IO.Compression doesn't exist in mono at all? I do: $ cat GZTest.cs using System.IO.Compression; class GZTest { } $ mcs /target:library GZTest.cs GZTest.cs(1,7): error CS0234: The type or namespace name

Re: [Mono-list] System.IO.Compression

2007-06-06 Thread Robert Jordan
Hi, Ian Su wrote: Hi, Somehow I'm having trouble getting GZipStream to work in mono. It's as if System.IO.Compression doesn't exist in mono at all? I do: $ cat GZTest.cs using System.IO.Compression; class GZTest { } $ mcs /target:library GZTest.cs GZTest.cs(1,7): error

Re: [Mono-list] [System.IO.Compression] OutOfMemory exception on DeflateStream instantiation

2006-12-09 Thread Generic 2006
On 12/07/2006 12:54 PM, Andreia Gaita wrote: On 12/5/06, Generic 2006 [EMAIL PROTECTED] wrote: Someone suggests this is a misleading exception indicating that the zlib version on the system is too old (1.2.0.4), but I have verified that its version on my system (Debian sarge stable) is OK

Re: [Mono-list] [System.IO.Compression] OutOfMemory exception on DeflateStream instantiation

2006-12-09 Thread Andreia Gaita
You need to compile mono, or at least the libMonoPosixHelper library, with the zlib devel libs. Your libMonoPosixHelper library probably only has stubs in the place of the compression methods, returning null, hence your exception. andreia gaita On 12/7/06, Generic 2006 [EMAIL PROTECTED] wrote:

Re: [Mono-list] [System.IO.Compression] OutOfMemory exception on DeflateStream instantiation

2006-12-07 Thread Andreia Gaita
On 12/5/06, Generic 2006 [EMAIL PROTECTED] wrote: Someone suggests this is a misleading exception indicating that the zlib version on the system is too old (1.2.0.4), but I have verified that its version on my system (Debian sarge stable) is OK (1.2.2). Do you have any suggestion, please?

Re: [Mono-list] [System.IO.Compression] OutOfMemory exception on DeflateStream instantiation

2006-12-07 Thread Paolo Molaro
On 12/06/06 Generic 2006 wrote: I'm crashing against an annoying issue, regarding the instantiation of DeflateStream objects. Here it is my simple code: MemoryStream outputStream = new MemoryStream(); DeflateStream outputFilter = new DeflateStream( outputStream,

[Mono-list] [System.IO.Compression] OutOfMemory exception on DeflateStream instantiation

2006-12-06 Thread Generic 2006
Hi all I'm crashing against an annoying issue, regarding the instantiation of DeflateStream objects. Here it is my simple code: MemoryStream outputStream = new MemoryStream(); DeflateStream outputFilter = new DeflateStream( outputStream, CompressionMode.Compress, true ); //