1
Here I have code:
byte[] Imagem1 = null;
byte[] Imagem2 = null;
byte[] Imagem3 = null;
byte[] Imagem4 = null;
byte[] Imagem5 = null;
byte[] Imagem6 = null;
How can I declare bytes[] variables inside an array ?
I’ve tried that:
byte[] imagem = new byte[6];
Problem:
foreach (string item in Request.Files)
{
HttpPostedFileBase file = Request.Files[item] as HttpPostedFileBase;
imagem[0] = ConvertToBytes(file);
}
Error:
Cannot implicitly convert type 'byte[]' to 'byte'
Another example:
int[] inteiros = new int[5];
inteiros[0] = 154;
inteiros[1] = 02555;
I know it works by int or string, I just can’t by byte[].
Tiago S, worked here, thanks.
– Matheus Miranda