I have a byte array and trying to display image from that.
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.W
In code behind
string base64String = Convert.ToBase64String(arr, 0, arr.Length); img.Src = "data:image/jpg;base64," + base64String;
You wouldn't need MemoryStream.
MemoryStream