سلام
برای خواندن فایل که بصورت باینری ذخیره کردم با این خطلا مواجعه میشم میخواستم بدونم مشکل از کجاست؟؟؟؟؟
 SaveFileDialog sfd = new SaveFileDialog();
if (sfd.ShowDialog()==System.Windows.Forms.DialogResu lt.OK)
{
byte[] filebytee = Convert.ToByte(dataGridView1.CurrentRow.Cells[1].Value);
File.WriteAllBytes(sfd.FileName, filebytee);
MessageBox.Show("okkkk");


}