csharp write byte[] to stream

Code Example - csharp write byte[] to stream

                
                        static void Write(Stream s, Byte[] bytes)
{
    using (var writer = new BinaryWriter(s))
    {
        writer.Write(bytes);
    }
}
                    
                
 

csharp string to byte array

                        
                                string author = "Mahesh Chand";  
// Convert a C# string to a byte array  
byte[] bytes = Encoding.ASCII.GetBytes(author);  

// Convert a byte array to a C# string. 
string str = Encoding.ASCII.GetString(bytes);
                            
                        
 

stream to byte array csharp

                        
                                public static byte[] GetBytes(Stream stream)
  {
   	var bytes = new byte[stream.Length];
   	stream.Seek(0, SeekOrigin.Begin);
   	stream.ReadAsync(bytes, 0, bytes.Length);
   	stream.Dispose();
   	return bytes;
  }
                            
                        
 

c sharp stream to byte array

                        
                                public static byte[] ReadFully(Stream input)
{
    byte[] buffer = new byte[16*1024];
    using (MemoryStream ms = new MemoryStream())
    {
        int read;
        while ((read = input.Read(buffer, 0, buffer.Length)) > 0)
        {
            ms.Write(buffer, 0, read);
        }
        return ms.ToArray();
    }
}
                            
                        
 

convert memorystream to byte array csharp

                        
                                Memory stream to byte array
                            
                        
 

byte to stream csharp

                        
                                byte[] file = File. ReadAllBytes("{FilePath}");
Stream stream = new MemoryStream(file);