我收到IFormFile
并想将其转换为byte[]
,我的代码如下所示:
private ProductDto GenerateData(Request product, IFormFile file)
{
if (file != null)
{
using (var item = new MemoryStream())
{
file.CopyTo(item);
item.ToArray();
}
}
return new ProductDto
{
product_resp = JsonConvert.SerializeObject(product).ToString(),
file_data = item; // I need here byte []
};
}
我尝试了一些东西,但我什至不确定我是否可以转换IFormFile
为byte[]
我尝试过的方式,不确定这是否是正确的方法。
无论如何,感谢您的帮助。