Beispiel #1
0
        public DataObject(ColumnObject column)
        {
            Left  = this;
            Right = this;
            Up    = this;
            Down  = this;

            Column = column;
        }
        public AlgorithmXMatrix(int columns)
        {
            _indexedColumns = new ColumnObject[columns];

            for (var i = 0; i < _indexedColumns.Length; i++)
            {
                var column = new ColumnObject(i);
                _head.InsertLeft(column);
                _indexedColumns[i] = column;
            }
        }