我在 C# 中有一个像这样的表
DataTable table = new DataTable();
table.Columns.Add("", typeof(string));
table.Columns.Add("Color", typeof(string));
table.Columns.Add("Brand", typeof(string));
table.Columns.Add("Type", typeof(string));
table.Columns.Add("Seats", typeof(int));
table.Columns.Add("Fuel consumption", typeof(int));
table.Columns.Add("Max. speed", typeof(int));
table.Rows.Add();
如果我想在一个单元格中有多个值,我不知道如何将值添加到行中,例如在颜色列中将是蓝色、绿色、黄色作为 3 个单独的字符串,而在席位中将是 2、4, 5, 8 作为整数...