Код:
DataTable table = new DataTable();
table.Columns.Add("Label", typeof(string));
table.Columns.Add("IP Address", typeof(string));
dataGridView3.DataSource = table;
string[] lines = File.ReadAllLines("database.dat");
string[] values;
for (int i = 0; i < lines.Length; i++)
{
values = lines[i].ToString().Split('/');
string[] row = new string[values.Length];
for (int j = 0; j < values.Length; j++)
{
row[j] = values[j].Trim();
}
table.Rows.Add(row);
Я продолжаю получать «Входной массив длиннее, чем количество столбцов в этой таблице». любая помощь будет оценена. Понятия не имею, что не так, спасибо.