Esempio n. 1
0
        public override Array ToArray()
        {
            int r = this.M, c = this.N, fieldCount = this.FieldCount;

            mxCellArray[,] array = new mxCellArray[r, c];

            for (int i = 0; i < r; i++)
            {
                for (int j = 0; j < c; j++)
                {
                    mxCellArray cell = new mxCellArray(fieldCount);
                    for (int x = 0; x < fieldCount; x++)
                    {
                        cell.SetCell(0, this.GetField(i, j, x));
                    }
                    array[i, j] = cell;
                }
            }

            return(array);
        }
Esempio n. 2
0
        public override Array ToArray()
        {
            int r = this.M, c = this.N, fieldCount = this.FieldCount;
            mxCellArray[,] array = new mxCellArray[r, c];

            for (int i = 0; i < r; i++) {
                for (int j = 0; j < c; j++) {
                    mxCellArray cell = new mxCellArray(fieldCount);
                    for (int x = 0; x < fieldCount; x++) {
                        cell.SetCell(0, this.GetField(i, j, x));
                    }
                    array[i, j] = cell;
                }
            }

            return array;
        }