put byte array in stream c# code example
Example 1: c# byte array to stream
Stream stream = new MemoryStream(byteArray);
Example 2: c# write byte[] to stream
static void Write(Stream s, Byte[] bytes)
{
using (var writer = new BinaryWriter(s))
{
writer.Write(bytes);
}
}