我有 5 种方法的结果。我想对每种方法的结果进行排序,然后在 datagridview 的 5 列中显示它们。你能帮我吗 ?
问问题
38 次
1 回答
0
您可能希望将它们添加到列表中:
List<int> Results1 = new List<int>();
List<int> Results2 = new List<int>();
然后在一个循环中,您可以将它们添加到 datagridview 中。
for(int i=0;i<Results1.count;i++)
{
dataGridView1.Rows[i].Cells[0].Value = Results1[i];
dataGridView1.Rows[i].Cells[1].Value = Results2[i];
}
我建议您也可以在 c# 中搜索数据表。希望对您有所帮助。
于 2013-06-09T09:44:45.297 回答