My TCP Client receives a image within a packet.The image is compressed with zlib.The task is to decompress the image and put it on the form.
I\'m planning to save the co
Use the static void System.IO.File.WriteAllBytes(string path, byte[] bytes) method.
byte[] buffer = new byte[200]; File.WriteAllBytes(@"c:\data.dmp", buffer);