while (!f.EndOfStream)
{
x = f.ReadLine();
list = x.Split(';');
InfoGrid.Rows.Add();
InfoGrid.Rows[i].Cells[0].Value = list[0];
InfoGrid.Rows[i].Cells[1].Value = list[1];
//comboBoxColumn.Items.AddRange("м", "ж");
InfoGrid.Rows[i].Cells[2].Value = list[2];
InfoGrid.Rows[i].Cells[3].Value = list[3];
InfoGrid.Rows[i].Cells[4].Value = list[4];
i++;
}