không liên quan nhưng em lười lập đề tài mới

em muốn đọc dữ liệu từ file text cho vào datatable rồi làm source cho GridView, nhưng khi load lên lại thừa cái dòng cuối cùng rỗng như trong hình ảnh

, em muốn bỏ đi phải làm dư nào ợ???
StreamReader file2 = new StreamReader("testing.txt");
string newline2;
while ((newline2 = file2.ReadLine()) != null)
{
DataRow dr = tb2.NewRow();
string[] str = newline2.Split(' ');
for (int i = 0; i < str.Length; i++)
{
dr[i+1] = str[i];
}
tb2.Rows.Add(dr);
}
dataGridView2.DataSource = tb2;