Here is code:
byte[] Imagem1 = null;
byte[] Imagem2 = null;
byte[] Imagem3 = null;
byte[] Imagem4 = null;
byte[] Imagem5 = null;
byte[] Imagem6 = null;
How can I declare the bytes [] variables within an array?
I've tried this:
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 that this works by int or string, I just can not get by the byte [].