F
Federico Del Bene
I have this piece of code perfectly working on the full framework:
-----------------
byte[] b = binaryReader.ReadBytes(145206);
MemoryStream ms = new MemoryStream(b);
ms.Seek(0,System.IO.SeekOrigin.Begin);
System.Drawing.Bitmap bm = new System.Drawing.Bitmap(ms);
-----------------
But on the compact one it generates an ArgumentException on the last line.
Any idea about the problem?
Thanks,
Federico Del Bene
-----------------
byte[] b = binaryReader.ReadBytes(145206);
MemoryStream ms = new MemoryStream(b);
ms.Seek(0,System.IO.SeekOrigin.Begin);
System.Drawing.Bitmap bm = new System.Drawing.Bitmap(ms);
-----------------
But on the compact one it generates an ArgumentException on the last line.
Any idea about the problem?
Thanks,
Federico Del Bene