M Mark Mar 3, 2005 #1 Hello. How can I write binary data from byte[] to some file on disk? Thank you.
C Christian Wilhelm Mar 3, 2005 #2 Hi Mark, how about using System.IO.FileStream fileStream = System.IO.File.Create("path"); fileStream.Write(byteArray, 0, byteArray.Length); fileStream.Close(); Regarding, Christian
Hi Mark, how about using System.IO.FileStream fileStream = System.IO.File.Create("path"); fileStream.Write(byteArray, 0, byteArray.Length); fileStream.Close(); Regarding, Christian