0

我的 WPF 应用程序中有matrix一种datagrid,我想创建一个二维Array来访问datagrid. 如何使用 bool 类型的二维数组访问 datagridcells,因为我的结果将是 Boolean 类型。

对于这 10 x 10 行、列数组中的每个 [i][j],我必须查询

例如

[0][0] = result of one query

[0][1] = result of another query

编辑

我试过的

bool[,] cell = new bool[10, 10];

        for (int i = 0; i < 10; i++)
        {
            for(int j= 0; j<10 ;j++)
            {
            cell[i,j] = (); // what to write here 
            }
        }
4

2 回答 2

1
bool[,] array = new bool[1, 3];

http://msdn.microsoft.com/en-us/library/2yd9wwz4.aspx

于 2013-05-29T09:53:14.577 回答
0

您可以在 C# 中定义二维数组:

var array2D = new int[13, 100];
array2D[7, 11] = 48;
于 2013-05-29T09:54:01.850 回答