Example #1
0
        /// <summary>
        /// Merge another DBData object's data into this one.
        /// </summary>
        /// <param name="dataSet">A DBData object whose data will be merged into this one.</param>
        public void Merge(DBData dataSet)
        {
            DBDataSet d = Data;

            d.AddRange(dataSet.Data);
            Data = d;
        }