Exemplo n.º 1
0
        public Row AddRow(object[] data)
        {
            Row row = new Row(this, data);
            this.rows.Add(row);

            return row;
        }
Exemplo n.º 2
0
        private bool AreEquals(Row row)
        {
            object rowvalue = row[this.position];

            if (rowvalue == null)
                return this.value == null;

            return rowvalue.Equals(this.value);
        }