No meu aplicativo MVC, estou usando o código a seguir para fazer upload de um arquivo.
MODELO
public HttpPostedFileBase File { get; set; }
VISÃO
@Html.TextBoxFor(m => m.File, new { type = "file" })
Tudo funcionando bem .. Mas estou tentando converter o resultado fiel em byte [] .Como posso fazer isso
CONTROLADOR
public ActionResult ManagePhotos(ManagePhotos model)
{
if (ModelState.IsValid)
{
byte[] image = model.File; //Its not working .How can convert this to byte array
}
}