using (FileStream fs = new FileStream(你的路径(如:C://test.jpg), FileMode.Create, FileAccess.Write))
{
fs.Write(你的byte, 0, 你的byte.Length);
}
使用using 防止保存不成功 内存无法关闭