Exemplo n.º 1
0
        public void AddRow(params int[] items)
        {
            TypelessDataRow row = new TypelessDataRow(items)
            {
                Table = this
            };

            this._rows.Add(row);
            this.RowCount++;
        }
Exemplo n.º 2
0
        public void AddRow(TypelessDataRow row)
        {
            if (row is null)
            {
                throw new ArgumentNullException(nameof(row));
            }

            row.Table = this;
            this._rows.Add(row);
            this.RowCount++;
        }