从1到n数组的组合并填充datagridview C#

时间:2019-01-03 12:17:46

标签: c# datagridview

编辑

我需要用5个数字范围从1到n的数组的所有可能组合来填充datagridview。 (n可以说100)。我的datagrid列是Number1,Number2,Number3,Number4,Number5。

我已经读过了 What is the best way to find all combinations of items in an array?

但是我需要在单击按钮后进行计算,然后填充datagridview。那可能吗?谢谢!

1 个答案:

答案 0 :(得分:-1)

填充datagridview的最佳方法是将其绑定到dataTable ... 所以如果你知道怎么做数学... 如果您知道如何触发按钮点击事件... 只需使用所需的所有列和行以及准备好时建立一个dataTable。 只要做MyDataGridView.DataSource = MyDataTable ...